Skip to content

Latest commit

 

History

History
181 lines (98 loc) · 4.71 KB

CreateGrid.md

File metadata and controls

181 lines (98 loc) · 4.71 KB

CreateGrid

Properties

Name Type Description Notes
Id Pointer to string [optional]
Name string
TemplateGridId Pointer to string [optional]
RecordIdentifierType Pointer to string [optional]
Columns Pointer to []CreateColumn [optional]
Metadata Pointer to map[string]string [optional]

Methods

NewCreateGrid

func NewCreateGrid(name string, ) *CreateGrid

NewCreateGrid instantiates a new CreateGrid 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

NewCreateGridWithDefaults

func NewCreateGridWithDefaults() *CreateGrid

NewCreateGridWithDefaults instantiates a new CreateGrid 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

GetId

func (o *CreateGrid) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *CreateGrid) GetIdOk() (*string, bool)

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

SetId

func (o *CreateGrid) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *CreateGrid) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *CreateGrid) GetName() string

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

GetNameOk

func (o *CreateGrid) 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 *CreateGrid) SetName(v string)

SetName sets Name field to given value.

GetTemplateGridId

func (o *CreateGrid) GetTemplateGridId() string

GetTemplateGridId returns the TemplateGridId field if non-nil, zero value otherwise.

GetTemplateGridIdOk

func (o *CreateGrid) GetTemplateGridIdOk() (*string, bool)

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

SetTemplateGridId

func (o *CreateGrid) SetTemplateGridId(v string)

SetTemplateGridId sets TemplateGridId field to given value.

HasTemplateGridId

func (o *CreateGrid) HasTemplateGridId() bool

HasTemplateGridId returns a boolean if a field has been set.

GetRecordIdentifierType

func (o *CreateGrid) GetRecordIdentifierType() string

GetRecordIdentifierType returns the RecordIdentifierType field if non-nil, zero value otherwise.

GetRecordIdentifierTypeOk

func (o *CreateGrid) GetRecordIdentifierTypeOk() (*string, bool)

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

SetRecordIdentifierType

func (o *CreateGrid) SetRecordIdentifierType(v string)

SetRecordIdentifierType sets RecordIdentifierType field to given value.

HasRecordIdentifierType

func (o *CreateGrid) HasRecordIdentifierType() bool

HasRecordIdentifierType returns a boolean if a field has been set.

GetColumns

func (o *CreateGrid) GetColumns() []CreateColumn

GetColumns returns the Columns field if non-nil, zero value otherwise.

GetColumnsOk

func (o *CreateGrid) GetColumnsOk() (*[]CreateColumn, bool)

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

SetColumns

func (o *CreateGrid) SetColumns(v []CreateColumn)

SetColumns sets Columns field to given value.

HasColumns

func (o *CreateGrid) HasColumns() bool

HasColumns returns a boolean if a field has been set.

GetMetadata

func (o *CreateGrid) GetMetadata() map[string]string

GetMetadata returns the Metadata field if non-nil, zero value otherwise.

GetMetadataOk

func (o *CreateGrid) GetMetadataOk() (*map[string]string, bool)

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

SetMetadata

func (o *CreateGrid) SetMetadata(v map[string]string)

SetMetadata sets Metadata field to given value.

HasMetadata

func (o *CreateGrid) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

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