Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.41 KB

LayoutField.md

File metadata and controls

134 lines (73 loc) · 3.41 KB

LayoutField

Properties

Name Type Description Notes
Description Pointer to string [optional]
Width Pointer to float32 [optional]
Height Pointer to float32 [optional]
DeviceType Pointer to string [optional]

Methods

NewLayoutField

func NewLayoutField() *LayoutField

NewLayoutField instantiates a new LayoutField 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

NewLayoutFieldWithDefaults

func NewLayoutFieldWithDefaults() *LayoutField

NewLayoutFieldWithDefaults instantiates a new LayoutField 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

GetDescription

func (o *LayoutField) GetDescription() string

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

GetDescriptionOk

func (o *LayoutField) 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 *LayoutField) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *LayoutField) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetWidth

func (o *LayoutField) GetWidth() float32

GetWidth returns the Width field if non-nil, zero value otherwise.

GetWidthOk

func (o *LayoutField) GetWidthOk() (*float32, bool)

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

SetWidth

func (o *LayoutField) SetWidth(v float32)

SetWidth sets Width field to given value.

HasWidth

func (o *LayoutField) HasWidth() bool

HasWidth returns a boolean if a field has been set.

GetHeight

func (o *LayoutField) GetHeight() float32

GetHeight returns the Height field if non-nil, zero value otherwise.

GetHeightOk

func (o *LayoutField) GetHeightOk() (*float32, bool)

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

SetHeight

func (o *LayoutField) SetHeight(v float32)

SetHeight sets Height field to given value.

HasHeight

func (o *LayoutField) HasHeight() bool

HasHeight returns a boolean if a field has been set.

GetDeviceType

func (o *LayoutField) GetDeviceType() string

GetDeviceType returns the DeviceType field if non-nil, zero value otherwise.

GetDeviceTypeOk

func (o *LayoutField) GetDeviceTypeOk() (*string, bool)

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

SetDeviceType

func (o *LayoutField) SetDeviceType(v string)

SetDeviceType sets DeviceType field to given value.

HasDeviceType

func (o *LayoutField) HasDeviceType() bool

HasDeviceType returns a boolean if a field has been set.

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