-
Notifications
You must be signed in to change notification settings - Fork 5
/
model_target_org.go
68 lines (58 loc) · 1.77 KB
/
model_target_org.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Code based on the AtlasAPI V2 OpenAPI file
package admin
import (
"encoding/json"
)
// TargetOrg struct for TargetOrg
type TargetOrg struct {
// Link token that contains all the information required to complete the link.
LinkToken string `json:"linkToken"`
}
// NewTargetOrg instantiates a new TargetOrg 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
func NewTargetOrg(linkToken string) *TargetOrg {
this := TargetOrg{}
this.LinkToken = linkToken
return &this
}
// NewTargetOrgWithDefaults instantiates a new TargetOrg 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
func NewTargetOrgWithDefaults() *TargetOrg {
this := TargetOrg{}
return &this
}
// GetLinkToken returns the LinkToken field value
func (o *TargetOrg) GetLinkToken() string {
if o == nil {
var ret string
return ret
}
return o.LinkToken
}
// GetLinkTokenOk returns a tuple with the LinkToken field value
// and a boolean to check if the value has been set.
func (o *TargetOrg) GetLinkTokenOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.LinkToken, true
}
// SetLinkToken sets field value
func (o *TargetOrg) SetLinkToken(v string) {
o.LinkToken = v
}
func (o TargetOrg) MarshalJSONWithoutReadOnly() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o TargetOrg) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["linkToken"] = o.LinkToken
return toSerialize, nil
}