Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 2.19 KB

UpdateViewRequest.md

File metadata and controls

77 lines (42 loc) · 2.19 KB

UpdateViewRequest

Properties

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

Methods

NewUpdateViewRequest

func NewUpdateViewRequest(query string, ) *UpdateViewRequest

NewUpdateViewRequest instantiates a new UpdateViewRequest 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

NewUpdateViewRequestWithDefaults

func NewUpdateViewRequestWithDefaults() *UpdateViewRequest

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

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *UpdateViewRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetQuery

func (o *UpdateViewRequest) GetQuery() string

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

GetQueryOk

func (o *UpdateViewRequest) 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 *UpdateViewRequest) SetQuery(v string)

SetQuery sets Query field to given value.

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