Skip to content

Latest commit

 

History

History
145 lines (78 loc) · 4.21 KB

File metadata and controls

145 lines (78 loc) · 4.21 KB

ComponentPresentation

Properties

Name Type Description Notes
Identifier string
Name string
Description Pointer to string [optional]
Presentation PresentationDefinition
ExpireAfterMs Pointer to int64 [optional]

Methods

NewComponentPresentation

func NewComponentPresentation(identifier string, name string, presentation PresentationDefinition, ) *ComponentPresentation

NewComponentPresentation instantiates a new ComponentPresentation 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

NewComponentPresentationWithDefaults

func NewComponentPresentationWithDefaults() *ComponentPresentation

NewComponentPresentationWithDefaults instantiates a new ComponentPresentation 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

GetIdentifier

func (o *ComponentPresentation) GetIdentifier() string

GetIdentifier returns the Identifier field if non-nil, zero value otherwise.

GetIdentifierOk

func (o *ComponentPresentation) GetIdentifierOk() (*string, bool)

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

SetIdentifier

func (o *ComponentPresentation) SetIdentifier(v string)

SetIdentifier sets Identifier field to given value.

GetName

func (o *ComponentPresentation) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *ComponentPresentation) GetNameOk() (*string, bool)

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

SetName

func (o *ComponentPresentation) SetName(v string)

SetName sets Name field to given value.

GetDescription

func (o *ComponentPresentation) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *ComponentPresentation) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *ComponentPresentation) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *ComponentPresentation) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetPresentation

func (o *ComponentPresentation) GetPresentation() PresentationDefinition

GetPresentation returns the Presentation field if non-nil, zero value otherwise.

GetPresentationOk

func (o *ComponentPresentation) GetPresentationOk() (*PresentationDefinition, bool)

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

SetPresentation

func (o *ComponentPresentation) SetPresentation(v PresentationDefinition)

SetPresentation sets Presentation field to given value.

GetExpireAfterMs

func (o *ComponentPresentation) GetExpireAfterMs() int64

GetExpireAfterMs returns the ExpireAfterMs field if non-nil, zero value otherwise.

GetExpireAfterMsOk

func (o *ComponentPresentation) GetExpireAfterMsOk() (*int64, bool)

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

SetExpireAfterMs

func (o *ComponentPresentation) SetExpireAfterMs(v int64)

SetExpireAfterMs sets ExpireAfterMs field to given value.

HasExpireAfterMs

func (o *ComponentPresentation) HasExpireAfterMs() bool

HasExpireAfterMs returns a boolean if a field has been set.

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