Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.03 KB

File metadata and controls

82 lines (45 loc) · 2.03 KB

Object

Properties

Name Type Description Notes
Field1 Pointer to string Specifies an action name to be used with the Android Intent class. [optional]
Type Pointer to string [optional]

Methods

NewObject

func NewObject() *Object

NewObject instantiates a new Object 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

NewObjectWithDefaults

func NewObjectWithDefaults() *Object

NewObjectWithDefaults instantiates a new Object 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

GetField1

func (o *Object) GetField1() string

GetField1 returns the Field1 field if non-nil, zero value otherwise.

GetField1Ok

func (o *Object) GetField1Ok() (*string, bool)

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

SetField1

func (o *Object) SetField1(v string)

SetField1 sets Field1 field to given value.

HasField1

func (o *Object) HasField1() bool

HasField1 returns a boolean if a field has been set.

GetType

func (o *Object) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *Object) GetTypeOk() (*string, bool)

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

SetType

func (o *Object) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *Object) HasType() bool

HasType returns a boolean if a field has been set.

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