Skip to content

Latest commit

 

History

History
98 lines (53 loc) · 2.95 KB

File metadata and controls

98 lines (53 loc) · 2.95 KB

ComponentViewArguments

Properties

Name Type Description Notes
Type string
ComponentIdentifier string
QueryTime Pointer to int32 Date/time representation in milliseconds since epoch (1970-01-01 00:00:00) [optional]

Methods

NewComponentViewArguments

func NewComponentViewArguments(type_ string, componentIdentifier string, ) *ComponentViewArguments

NewComponentViewArguments instantiates a new ComponentViewArguments 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

NewComponentViewArgumentsWithDefaults

func NewComponentViewArgumentsWithDefaults() *ComponentViewArguments

NewComponentViewArgumentsWithDefaults instantiates a new ComponentViewArguments 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

GetType

func (o *ComponentViewArguments) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *ComponentViewArguments) GetTypeOk() (*string, bool)

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

SetType

func (o *ComponentViewArguments) SetType(v string)

SetType sets Type field to given value.

GetComponentIdentifier

func (o *ComponentViewArguments) GetComponentIdentifier() string

GetComponentIdentifier returns the ComponentIdentifier field if non-nil, zero value otherwise.

GetComponentIdentifierOk

func (o *ComponentViewArguments) GetComponentIdentifierOk() (*string, bool)

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

SetComponentIdentifier

func (o *ComponentViewArguments) SetComponentIdentifier(v string)

SetComponentIdentifier sets ComponentIdentifier field to given value.

GetQueryTime

func (o *ComponentViewArguments) GetQueryTime() int32

GetQueryTime returns the QueryTime field if non-nil, zero value otherwise.

GetQueryTimeOk

func (o *ComponentViewArguments) GetQueryTimeOk() (*int32, bool)

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

SetQueryTime

func (o *ComponentViewArguments) SetQueryTime(v int32)

SetQueryTime sets QueryTime field to given value.

HasQueryTime

func (o *ComponentViewArguments) HasQueryTime() bool

HasQueryTime returns a boolean if a field has been set.

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