Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.71 KB

File metadata and controls

108 lines (59 loc) · 2.71 KB

Template

Properties

Name Type Description Notes
Message Pointer to string [optional]
Status Pointer to bool [optional]
Template Pointer to TemplateFields [optional]

Methods

NewTemplate

func NewTemplate() *Template

NewTemplate instantiates a new Template object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewTemplateWithDefaults

func NewTemplateWithDefaults() *Template

NewTemplateWithDefaults instantiates a new Template object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetMessage

func (o *Template) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *Template) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetMessage

func (o *Template) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *Template) HasMessage() bool

HasMessage returns a boolean if a field has been set.

GetStatus

func (o *Template) GetStatus() bool

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *Template) GetStatusOk() (*bool, bool)

GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetStatus

func (o *Template) SetStatus(v bool)

SetStatus sets Status field to given value.

HasStatus

func (o *Template) HasStatus() bool

HasStatus returns a boolean if a field has been set.

GetTemplate

func (o *Template) GetTemplate() TemplateFields

GetTemplate returns the Template field if non-nil, zero value otherwise.

GetTemplateOk

func (o *Template) GetTemplateOk() (*TemplateFields, bool)

GetTemplateOk returns a tuple with the Template field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTemplate

func (o *Template) SetTemplate(v TemplateFields)

SetTemplate sets Template field to given value.

HasTemplate

func (o *Template) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]