Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.7 KB

CreateView.md

File metadata and controls

108 lines (59 loc) · 2.7 KB

CreateView

Properties

Name Type Description Notes
Name Pointer to string [optional]
GridId Pointer to string [optional]
Columns Pointer to []AddViewColumn [optional]

Methods

NewCreateView

func NewCreateView() *CreateView

NewCreateView instantiates a new CreateView 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

NewCreateViewWithDefaults

func NewCreateViewWithDefaults() *CreateView

NewCreateViewWithDefaults instantiates a new CreateView 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

GetName

func (o *CreateView) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *CreateView) HasName() bool

HasName returns a boolean if a field has been set.

GetGridId

func (o *CreateView) GetGridId() string

GetGridId returns the GridId field if non-nil, zero value otherwise.

GetGridIdOk

func (o *CreateView) GetGridIdOk() (*string, bool)

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

SetGridId

func (o *CreateView) SetGridId(v string)

SetGridId sets GridId field to given value.

HasGridId

func (o *CreateView) HasGridId() bool

HasGridId returns a boolean if a field has been set.

GetColumns

func (o *CreateView) GetColumns() []AddViewColumn

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

GetColumnsOk

func (o *CreateView) GetColumnsOk() (*[]AddViewColumn, 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 *CreateView) SetColumns(v []AddViewColumn)

SetColumns sets Columns field to given value.

HasColumns

func (o *CreateView) HasColumns() bool

HasColumns returns a boolean if a field has been set.

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