-
Notifications
You must be signed in to change notification settings - Fork 1
/
model_create_on_call_schedule_info.go
146 lines (117 loc) · 4.16 KB
/
model_create_on_call_schedule_info.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
Opal API
Your Home For Developer Resources.
API version: 1.0
Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package opal
import (
"encoding/json"
)
// checks if the CreateOnCallScheduleInfo type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &CreateOnCallScheduleInfo{}
// CreateOnCallScheduleInfo # CreateOnCallScheduleInfo Object ### Description The `CreateOnCallScheduleInfo` object is used to describe the on call schedule object to be created.
type CreateOnCallScheduleInfo struct {
ThirdPartyProvider OnCallScheduleProviderEnum `json:"third_party_provider"`
// The remote ID of the on call schedule
RemoteId string `json:"remote_id"`
}
// NewCreateOnCallScheduleInfo instantiates a new CreateOnCallScheduleInfo 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 NewCreateOnCallScheduleInfo(thirdPartyProvider OnCallScheduleProviderEnum, remoteId string) *CreateOnCallScheduleInfo {
this := CreateOnCallScheduleInfo{}
this.ThirdPartyProvider = thirdPartyProvider
this.RemoteId = remoteId
return &this
}
// NewCreateOnCallScheduleInfoWithDefaults instantiates a new CreateOnCallScheduleInfo 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 NewCreateOnCallScheduleInfoWithDefaults() *CreateOnCallScheduleInfo {
this := CreateOnCallScheduleInfo{}
return &this
}
// GetThirdPartyProvider returns the ThirdPartyProvider field value
func (o *CreateOnCallScheduleInfo) GetThirdPartyProvider() OnCallScheduleProviderEnum {
if o == nil {
var ret OnCallScheduleProviderEnum
return ret
}
return o.ThirdPartyProvider
}
// GetThirdPartyProviderOk returns a tuple with the ThirdPartyProvider field value
// and a boolean to check if the value has been set.
func (o *CreateOnCallScheduleInfo) GetThirdPartyProviderOk() (*OnCallScheduleProviderEnum, bool) {
if o == nil {
return nil, false
}
return &o.ThirdPartyProvider, true
}
// SetThirdPartyProvider sets field value
func (o *CreateOnCallScheduleInfo) SetThirdPartyProvider(v OnCallScheduleProviderEnum) {
o.ThirdPartyProvider = v
}
// GetRemoteId returns the RemoteId field value
func (o *CreateOnCallScheduleInfo) GetRemoteId() string {
if o == nil {
var ret string
return ret
}
return o.RemoteId
}
// GetRemoteIdOk returns a tuple with the RemoteId field value
// and a boolean to check if the value has been set.
func (o *CreateOnCallScheduleInfo) GetRemoteIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.RemoteId, true
}
// SetRemoteId sets field value
func (o *CreateOnCallScheduleInfo) SetRemoteId(v string) {
o.RemoteId = v
}
func (o CreateOnCallScheduleInfo) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o CreateOnCallScheduleInfo) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["third_party_provider"] = o.ThirdPartyProvider
toSerialize["remote_id"] = o.RemoteId
return toSerialize, nil
}
type NullableCreateOnCallScheduleInfo struct {
value *CreateOnCallScheduleInfo
isSet bool
}
func (v NullableCreateOnCallScheduleInfo) Get() *CreateOnCallScheduleInfo {
return v.value
}
func (v *NullableCreateOnCallScheduleInfo) Set(val *CreateOnCallScheduleInfo) {
v.value = val
v.isSet = true
}
func (v NullableCreateOnCallScheduleInfo) IsSet() bool {
return v.isSet
}
func (v *NullableCreateOnCallScheduleInfo) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableCreateOnCallScheduleInfo(val *CreateOnCallScheduleInfo) *NullableCreateOnCallScheduleInfo {
return &NullableCreateOnCallScheduleInfo{value: val, isSet: true}
}
func (v NullableCreateOnCallScheduleInfo) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableCreateOnCallScheduleInfo) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}