Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.16 KB

Template.md

File metadata and controls

82 lines (45 loc) · 2.16 KB

Template

Properties

Name Type Description Notes
Assets Pointer to []Asset [optional]
TemplateId Pointer to string template id - unique identifier for the template [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

GetAssets

func (o *Template) GetAssets() []Asset

GetAssets returns the Assets field if non-nil, zero value otherwise.

GetAssetsOk

func (o *Template) GetAssetsOk() (*[]Asset, bool)

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

SetAssets

func (o *Template) SetAssets(v []Asset)

SetAssets sets Assets field to given value.

HasAssets

func (o *Template) HasAssets() bool

HasAssets returns a boolean if a field has been set.

GetTemplateId

func (o *Template) GetTemplateId() string

GetTemplateId returns the TemplateId field if non-nil, zero value otherwise.

GetTemplateIdOk

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

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

SetTemplateId

func (o *Template) SetTemplateId(v string)

SetTemplateId sets TemplateId field to given value.

HasTemplateId

func (o *Template) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

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