Skip to content

Latest commit

 

History

History
98 lines (53 loc) · 2.67 KB

CreateViewRequest.md

File metadata and controls

98 lines (53 loc) · 2.67 KB

CreateViewRequest

Properties

Name Type Description Notes
Description Pointer to string Optional description. [optional]
Name string View name.
Query string SQL for this view.

Methods

NewCreateViewRequest

func NewCreateViewRequest(name string, query string, ) *CreateViewRequest

NewCreateViewRequest instantiates a new CreateViewRequest 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

NewCreateViewRequestWithDefaults

func NewCreateViewRequestWithDefaults() *CreateViewRequest

NewCreateViewRequestWithDefaults instantiates a new CreateViewRequest 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 *CreateViewRequest) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *CreateViewRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetName

func (o *CreateViewRequest) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetQuery

func (o *CreateViewRequest) GetQuery() string

GetQuery returns the Query field if non-nil, zero value otherwise.

GetQueryOk

func (o *CreateViewRequest) GetQueryOk() (*string, bool)

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

SetQuery

func (o *CreateViewRequest) SetQuery(v string)

SetQuery sets Query field to given value.

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