Skip to content

Latest commit

 

History

History
124 lines (67 loc) · 2.91 KB

View.md

File metadata and controls

124 lines (67 loc) · 2.91 KB

View

Properties

Name Type Description Notes
Data interface{}
OrgId string
ViewId string
ViewName string

Methods

NewView

func NewView(data interface{}, orgId string, viewId string, viewName string, ) *View

NewView instantiates a new View 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

NewViewWithDefaults

func NewViewWithDefaults() *View

NewViewWithDefaults instantiates a new View 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

GetData

func (o *View) GetData() interface{}

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *View) GetDataOk() (*interface{}, bool)

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

SetData

func (o *View) SetData(v interface{})

SetData sets Data field to given value.

SetDataNil

func (o *View) SetDataNil(b bool)

SetDataNil sets the value for Data to be an explicit nil

UnsetData

func (o *View) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

GetOrgId

func (o *View) GetOrgId() string

GetOrgId returns the OrgId field if non-nil, zero value otherwise.

GetOrgIdOk

func (o *View) GetOrgIdOk() (*string, bool)

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

SetOrgId

func (o *View) SetOrgId(v string)

SetOrgId sets OrgId field to given value.

GetViewId

func (o *View) GetViewId() string

GetViewId returns the ViewId field if non-nil, zero value otherwise.

GetViewIdOk

func (o *View) GetViewIdOk() (*string, bool)

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

SetViewId

func (o *View) SetViewId(v string)

SetViewId sets ViewId field to given value.

GetViewName

func (o *View) GetViewName() string

GetViewName returns the ViewName field if non-nil, zero value otherwise.

GetViewNameOk

func (o *View) GetViewNameOk() (*string, bool)

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

SetViewName

func (o *View) SetViewName(v string)

SetViewName sets ViewName field to given value.

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