Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 2.01 KB

LayoutStructure.md

File metadata and controls

72 lines (39 loc) · 2.01 KB

LayoutStructure

Properties

Name Type Description Notes
Key string The identifier of the panel that this structure applies to.
Structure string The structure of a panel.

Methods

NewLayoutStructure

func NewLayoutStructure(key string, structure string, ) *LayoutStructure

NewLayoutStructure instantiates a new LayoutStructure 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

NewLayoutStructureWithDefaults

func NewLayoutStructureWithDefaults() *LayoutStructure

NewLayoutStructureWithDefaults instantiates a new LayoutStructure 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

GetKey

func (o *LayoutStructure) GetKey() string

GetKey returns the Key field if non-nil, zero value otherwise.

GetKeyOk

func (o *LayoutStructure) GetKeyOk() (*string, bool)

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

SetKey

func (o *LayoutStructure) SetKey(v string)

SetKey sets Key field to given value.

GetStructure

func (o *LayoutStructure) GetStructure() string

GetStructure returns the Structure field if non-nil, zero value otherwise.

GetStructureOk

func (o *LayoutStructure) GetStructureOk() (*string, bool)

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

SetStructure

func (o *LayoutStructure) SetStructure(v string)

SetStructure sets Structure field to given value.

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