late-sdk 0.0.705 → 0.0.706

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -0
  3. data/docs/AdAccountsApi.md +214 -0
  4. data/docs/CreateAdCreativeRequest.md +3 -1
  5. data/docs/CreateCustomConversionRequest.md +26 -0
  6. data/docs/CreateHighDemandPeriod201Response.md +20 -0
  7. data/docs/CreateHighDemandPeriodRequest.md +34 -0
  8. data/docs/CreateStandaloneAdRequest.md +2 -0
  9. data/docs/CustomConversion.md +28 -0
  10. data/docs/CustomConversionResult.md +24 -0
  11. data/docs/ListCustomConversions200Response.md +20 -0
  12. data/lib/zernio-sdk/api/ad_accounts_api.rb +212 -0
  13. data/lib/zernio-sdk/models/create_ad_creative_request.rb +26 -4
  14. data/lib/zernio-sdk/models/create_custom_conversion_request.rb +282 -0
  15. data/lib/zernio-sdk/models/create_high_demand_period201_response.rb +158 -0
  16. data/lib/zernio-sdk/models/create_high_demand_period_request.rb +347 -0
  17. data/lib/zernio-sdk/models/create_standalone_ad_request.rb +23 -1
  18. data/lib/zernio-sdk/models/custom_conversion.rb +198 -0
  19. data/lib/zernio-sdk/models/custom_conversion_result.rb +176 -0
  20. data/lib/zernio-sdk/models/list_custom_conversions200_response.rb +158 -0
  21. data/lib/zernio-sdk/version.rb +1 -1
  22. data/lib/zernio-sdk.rb +6 -0
  23. data/openapi.yaml +151 -0
  24. data/spec/api/ad_accounts_api_spec.rb +38 -0
  25. data/spec/models/create_ad_creative_request_spec.rb +10 -0
  26. data/spec/models/create_custom_conversion_request_spec.rb +60 -0
  27. data/spec/models/create_high_demand_period201_response_spec.rb +42 -0
  28. data/spec/models/create_high_demand_period_request_spec.rb +92 -0
  29. data/spec/models/create_standalone_ad_request_spec.rb +10 -0
  30. data/spec/models/custom_conversion_result_spec.rb +54 -0
  31. data/spec/models/custom_conversion_spec.rb +66 -0
  32. data/spec/models/list_custom_conversions200_response_spec.rb +42 -0
  33. data/zernio-sdk-0.0.706.gem +0 -0
  34. metadata +26 -2
  35. data/zernio-sdk-0.0.705.gem +0 -0
@@ -0,0 +1,198 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.4
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Zernio
17
+ class CustomConversion < ApiModelBase
18
+ attr_accessor :id
19
+
20
+ attr_accessor :name
21
+
22
+ # Meta's rule, parsed back from the string Meta stores.
23
+ attr_accessor :rule
24
+
25
+ attr_accessor :custom_event_type
26
+
27
+ # Meta's event_source_id — the pixel the rule reads from.
28
+ attr_accessor :pixel_id
29
+
30
+ attr_accessor :is_archived
31
+
32
+ # Attribute mapping from ruby-style variable name to JSON key.
33
+ def self.attribute_map
34
+ {
35
+ :'id' => :'id',
36
+ :'name' => :'name',
37
+ :'rule' => :'rule',
38
+ :'custom_event_type' => :'customEventType',
39
+ :'pixel_id' => :'pixelId',
40
+ :'is_archived' => :'isArchived'
41
+ }
42
+ end
43
+
44
+ # Returns attribute mapping this model knows about
45
+ def self.acceptable_attribute_map
46
+ attribute_map
47
+ end
48
+
49
+ # Returns all the JSON keys this model knows about
50
+ def self.acceptable_attributes
51
+ acceptable_attribute_map.values
52
+ end
53
+
54
+ # Attribute type mapping.
55
+ def self.openapi_types
56
+ {
57
+ :'id' => :'String',
58
+ :'name' => :'String',
59
+ :'rule' => :'Object',
60
+ :'custom_event_type' => :'String',
61
+ :'pixel_id' => :'String',
62
+ :'is_archived' => :'Boolean'
63
+ }
64
+ end
65
+
66
+ # List of attributes with nullable: true
67
+ def self.openapi_nullable
68
+ Set.new([
69
+ :'name',
70
+ :'rule',
71
+ :'custom_event_type',
72
+ :'pixel_id',
73
+ ])
74
+ end
75
+
76
+ # Initializes the object
77
+ # @param [Hash] attributes Model attributes in the form of hash
78
+ def initialize(attributes = {})
79
+ if (!attributes.is_a?(Hash))
80
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Zernio::CustomConversion` initialize method"
81
+ end
82
+
83
+ # check to see if the attribute exists and convert string to symbol for hash key
84
+ acceptable_attribute_map = self.class.acceptable_attribute_map
85
+ attributes = attributes.each_with_object({}) { |(k, v), h|
86
+ if (!acceptable_attribute_map.key?(k.to_sym))
87
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Zernio::CustomConversion`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
88
+ end
89
+ h[k.to_sym] = v
90
+ }
91
+
92
+ if attributes.key?(:'id')
93
+ self.id = attributes[:'id']
94
+ end
95
+
96
+ if attributes.key?(:'name')
97
+ self.name = attributes[:'name']
98
+ end
99
+
100
+ if attributes.key?(:'rule')
101
+ self.rule = attributes[:'rule']
102
+ end
103
+
104
+ if attributes.key?(:'custom_event_type')
105
+ self.custom_event_type = attributes[:'custom_event_type']
106
+ end
107
+
108
+ if attributes.key?(:'pixel_id')
109
+ self.pixel_id = attributes[:'pixel_id']
110
+ end
111
+
112
+ if attributes.key?(:'is_archived')
113
+ self.is_archived = attributes[:'is_archived']
114
+ end
115
+ end
116
+
117
+ # Show invalid properties with the reasons. Usually used together with valid?
118
+ # @return Array for valid properties with the reasons
119
+ def list_invalid_properties
120
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
121
+ invalid_properties = Array.new
122
+ invalid_properties
123
+ end
124
+
125
+ # Check to see if the all the properties in the model are valid
126
+ # @return true if the model is valid
127
+ def valid?
128
+ warn '[DEPRECATED] the `valid?` method is obsolete'
129
+ true
130
+ end
131
+
132
+ # Checks equality by comparing each attribute.
133
+ # @param [Object] Object to be compared
134
+ def ==(o)
135
+ return true if self.equal?(o)
136
+ self.class == o.class &&
137
+ id == o.id &&
138
+ name == o.name &&
139
+ rule == o.rule &&
140
+ custom_event_type == o.custom_event_type &&
141
+ pixel_id == o.pixel_id &&
142
+ is_archived == o.is_archived
143
+ end
144
+
145
+ # @see the `==` method
146
+ # @param [Object] Object to be compared
147
+ def eql?(o)
148
+ self == o
149
+ end
150
+
151
+ # Calculates hash code according to all attributes.
152
+ # @return [Integer] Hash code
153
+ def hash
154
+ [id, name, rule, custom_event_type, pixel_id, is_archived].hash
155
+ end
156
+
157
+ # Builds the object from hash
158
+ # @param [Hash] attributes Model attributes in the form of hash
159
+ # @return [Object] Returns the model itself
160
+ def self.build_from_hash(attributes)
161
+ return nil unless attributes.is_a?(Hash)
162
+ attributes = attributes.transform_keys(&:to_sym)
163
+ transformed_hash = {}
164
+ openapi_types.each_pair do |key, type|
165
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
166
+ transformed_hash["#{key}"] = nil
167
+ elsif type =~ /\AArray<(.*)>/i
168
+ # check to ensure the input is an array given that the attribute
169
+ # is documented as an array but the input is not
170
+ if attributes[attribute_map[key]].is_a?(Array)
171
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
172
+ end
173
+ elsif !attributes[attribute_map[key]].nil?
174
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
175
+ end
176
+ end
177
+ new(transformed_hash)
178
+ end
179
+
180
+ # Returns the object in the form of hash
181
+ # @return [Hash] Returns the object in the form of hash
182
+ def to_hash
183
+ hash = {}
184
+ self.class.attribute_map.each_pair do |attr, param|
185
+ value = self.send(attr)
186
+ if value.nil?
187
+ is_nullable = self.class.openapi_nullable.include?(attr)
188
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
189
+ end
190
+
191
+ hash[param] = _to_hash(value)
192
+ end
193
+ hash
194
+ end
195
+
196
+ end
197
+
198
+ end
@@ -0,0 +1,176 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.4
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Zernio
17
+ class CustomConversionResult < ApiModelBase
18
+ attr_accessor :ad_account_id
19
+
20
+ # Drops straight into promotedObject.customConversionId on POST /v1/ads/create.
21
+ attr_accessor :custom_conversion_id
22
+
23
+ # True when an existing conversion matched name + pixelId; the response is then a 200.
24
+ attr_accessor :reused
25
+
26
+ attr_accessor :custom_conversion
27
+
28
+ # Attribute mapping from ruby-style variable name to JSON key.
29
+ def self.attribute_map
30
+ {
31
+ :'ad_account_id' => :'adAccountId',
32
+ :'custom_conversion_id' => :'customConversionId',
33
+ :'reused' => :'reused',
34
+ :'custom_conversion' => :'customConversion'
35
+ }
36
+ end
37
+
38
+ # Returns attribute mapping this model knows about
39
+ def self.acceptable_attribute_map
40
+ attribute_map
41
+ end
42
+
43
+ # Returns all the JSON keys this model knows about
44
+ def self.acceptable_attributes
45
+ acceptable_attribute_map.values
46
+ end
47
+
48
+ # Attribute type mapping.
49
+ def self.openapi_types
50
+ {
51
+ :'ad_account_id' => :'String',
52
+ :'custom_conversion_id' => :'String',
53
+ :'reused' => :'Boolean',
54
+ :'custom_conversion' => :'CustomConversion'
55
+ }
56
+ end
57
+
58
+ # List of attributes with nullable: true
59
+ def self.openapi_nullable
60
+ Set.new([
61
+ ])
62
+ end
63
+
64
+ # Initializes the object
65
+ # @param [Hash] attributes Model attributes in the form of hash
66
+ def initialize(attributes = {})
67
+ if (!attributes.is_a?(Hash))
68
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Zernio::CustomConversionResult` initialize method"
69
+ end
70
+
71
+ # check to see if the attribute exists and convert string to symbol for hash key
72
+ acceptable_attribute_map = self.class.acceptable_attribute_map
73
+ attributes = attributes.each_with_object({}) { |(k, v), h|
74
+ if (!acceptable_attribute_map.key?(k.to_sym))
75
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Zernio::CustomConversionResult`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
76
+ end
77
+ h[k.to_sym] = v
78
+ }
79
+
80
+ if attributes.key?(:'ad_account_id')
81
+ self.ad_account_id = attributes[:'ad_account_id']
82
+ end
83
+
84
+ if attributes.key?(:'custom_conversion_id')
85
+ self.custom_conversion_id = attributes[:'custom_conversion_id']
86
+ end
87
+
88
+ if attributes.key?(:'reused')
89
+ self.reused = attributes[:'reused']
90
+ end
91
+
92
+ if attributes.key?(:'custom_conversion')
93
+ self.custom_conversion = attributes[:'custom_conversion']
94
+ end
95
+ end
96
+
97
+ # Show invalid properties with the reasons. Usually used together with valid?
98
+ # @return Array for valid properties with the reasons
99
+ def list_invalid_properties
100
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
101
+ invalid_properties = Array.new
102
+ invalid_properties
103
+ end
104
+
105
+ # Check to see if the all the properties in the model are valid
106
+ # @return true if the model is valid
107
+ def valid?
108
+ warn '[DEPRECATED] the `valid?` method is obsolete'
109
+ true
110
+ end
111
+
112
+ # Checks equality by comparing each attribute.
113
+ # @param [Object] Object to be compared
114
+ def ==(o)
115
+ return true if self.equal?(o)
116
+ self.class == o.class &&
117
+ ad_account_id == o.ad_account_id &&
118
+ custom_conversion_id == o.custom_conversion_id &&
119
+ reused == o.reused &&
120
+ custom_conversion == o.custom_conversion
121
+ end
122
+
123
+ # @see the `==` method
124
+ # @param [Object] Object to be compared
125
+ def eql?(o)
126
+ self == o
127
+ end
128
+
129
+ # Calculates hash code according to all attributes.
130
+ # @return [Integer] Hash code
131
+ def hash
132
+ [ad_account_id, custom_conversion_id, reused, custom_conversion].hash
133
+ end
134
+
135
+ # Builds the object from hash
136
+ # @param [Hash] attributes Model attributes in the form of hash
137
+ # @return [Object] Returns the model itself
138
+ def self.build_from_hash(attributes)
139
+ return nil unless attributes.is_a?(Hash)
140
+ attributes = attributes.transform_keys(&:to_sym)
141
+ transformed_hash = {}
142
+ openapi_types.each_pair do |key, type|
143
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
144
+ transformed_hash["#{key}"] = nil
145
+ elsif type =~ /\AArray<(.*)>/i
146
+ # check to ensure the input is an array given that the attribute
147
+ # is documented as an array but the input is not
148
+ if attributes[attribute_map[key]].is_a?(Array)
149
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
150
+ end
151
+ elsif !attributes[attribute_map[key]].nil?
152
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
153
+ end
154
+ end
155
+ new(transformed_hash)
156
+ end
157
+
158
+ # Returns the object in the form of hash
159
+ # @return [Hash] Returns the object in the form of hash
160
+ def to_hash
161
+ hash = {}
162
+ self.class.attribute_map.each_pair do |attr, param|
163
+ value = self.send(attr)
164
+ if value.nil?
165
+ is_nullable = self.class.openapi_nullable.include?(attr)
166
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
167
+ end
168
+
169
+ hash[param] = _to_hash(value)
170
+ end
171
+ hash
172
+ end
173
+
174
+ end
175
+
176
+ end
@@ -0,0 +1,158 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.4
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Zernio
17
+ class ListCustomConversions200Response < ApiModelBase
18
+ attr_accessor :ad_account_id
19
+
20
+ attr_accessor :data
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'ad_account_id' => :'adAccountId',
26
+ :'data' => :'data'
27
+ }
28
+ end
29
+
30
+ # Returns attribute mapping this model knows about
31
+ def self.acceptable_attribute_map
32
+ attribute_map
33
+ end
34
+
35
+ # Returns all the JSON keys this model knows about
36
+ def self.acceptable_attributes
37
+ acceptable_attribute_map.values
38
+ end
39
+
40
+ # Attribute type mapping.
41
+ def self.openapi_types
42
+ {
43
+ :'ad_account_id' => :'String',
44
+ :'data' => :'Array<CustomConversion>'
45
+ }
46
+ end
47
+
48
+ # List of attributes with nullable: true
49
+ def self.openapi_nullable
50
+ Set.new([
51
+ ])
52
+ end
53
+
54
+ # Initializes the object
55
+ # @param [Hash] attributes Model attributes in the form of hash
56
+ def initialize(attributes = {})
57
+ if (!attributes.is_a?(Hash))
58
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Zernio::ListCustomConversions200Response` initialize method"
59
+ end
60
+
61
+ # check to see if the attribute exists and convert string to symbol for hash key
62
+ acceptable_attribute_map = self.class.acceptable_attribute_map
63
+ attributes = attributes.each_with_object({}) { |(k, v), h|
64
+ if (!acceptable_attribute_map.key?(k.to_sym))
65
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Zernio::ListCustomConversions200Response`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
66
+ end
67
+ h[k.to_sym] = v
68
+ }
69
+
70
+ if attributes.key?(:'ad_account_id')
71
+ self.ad_account_id = attributes[:'ad_account_id']
72
+ end
73
+
74
+ if attributes.key?(:'data')
75
+ if (value = attributes[:'data']).is_a?(Array)
76
+ self.data = value
77
+ end
78
+ end
79
+ end
80
+
81
+ # Show invalid properties with the reasons. Usually used together with valid?
82
+ # @return Array for valid properties with the reasons
83
+ def list_invalid_properties
84
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
85
+ invalid_properties = Array.new
86
+ invalid_properties
87
+ end
88
+
89
+ # Check to see if the all the properties in the model are valid
90
+ # @return true if the model is valid
91
+ def valid?
92
+ warn '[DEPRECATED] the `valid?` method is obsolete'
93
+ true
94
+ end
95
+
96
+ # Checks equality by comparing each attribute.
97
+ # @param [Object] Object to be compared
98
+ def ==(o)
99
+ return true if self.equal?(o)
100
+ self.class == o.class &&
101
+ ad_account_id == o.ad_account_id &&
102
+ data == o.data
103
+ end
104
+
105
+ # @see the `==` method
106
+ # @param [Object] Object to be compared
107
+ def eql?(o)
108
+ self == o
109
+ end
110
+
111
+ # Calculates hash code according to all attributes.
112
+ # @return [Integer] Hash code
113
+ def hash
114
+ [ad_account_id, data].hash
115
+ end
116
+
117
+ # Builds the object from hash
118
+ # @param [Hash] attributes Model attributes in the form of hash
119
+ # @return [Object] Returns the model itself
120
+ def self.build_from_hash(attributes)
121
+ return nil unless attributes.is_a?(Hash)
122
+ attributes = attributes.transform_keys(&:to_sym)
123
+ transformed_hash = {}
124
+ openapi_types.each_pair do |key, type|
125
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
126
+ transformed_hash["#{key}"] = nil
127
+ elsif type =~ /\AArray<(.*)>/i
128
+ # check to ensure the input is an array given that the attribute
129
+ # is documented as an array but the input is not
130
+ if attributes[attribute_map[key]].is_a?(Array)
131
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
132
+ end
133
+ elsif !attributes[attribute_map[key]].nil?
134
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
135
+ end
136
+ end
137
+ new(transformed_hash)
138
+ end
139
+
140
+ # Returns the object in the form of hash
141
+ # @return [Hash] Returns the object in the form of hash
142
+ def to_hash
143
+ hash = {}
144
+ self.class.attribute_map.each_pair do |attr, param|
145
+ value = self.send(attr)
146
+ if value.nil?
147
+ is_nullable = self.class.openapi_nullable.include?(attr)
148
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
149
+ end
150
+
151
+ hash[param] = _to_hash(value)
152
+ end
153
+ hash
154
+ end
155
+
156
+ end
157
+
158
+ end
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.705'
14
+ VERSION = '0.0.706'
15
15
  end
data/lib/zernio-sdk.rb CHANGED
@@ -199,6 +199,7 @@ require 'zernio-sdk/models/create_conversion_destination201_response'
199
199
  require 'zernio-sdk/models/create_conversion_destination_request'
200
200
  require 'zernio-sdk/models/create_conversion_destination_request_value'
201
201
  require 'zernio-sdk/models/create_ctwa_ad201_response'
202
+ require 'zernio-sdk/models/create_custom_conversion_request'
202
203
  require 'zernio-sdk/models/create_custom_field200_response'
203
204
  require 'zernio-sdk/models/create_custom_field_request'
204
205
  require 'zernio-sdk/models/create_discord_guild_role201_response'
@@ -216,6 +217,8 @@ require 'zernio-sdk/models/create_google_business_media200_response'
216
217
  require 'zernio-sdk/models/create_google_business_media_request'
217
218
  require 'zernio-sdk/models/create_google_business_place_action200_response'
218
219
  require 'zernio-sdk/models/create_google_business_place_action_request'
220
+ require 'zernio-sdk/models/create_high_demand_period201_response'
221
+ require 'zernio-sdk/models/create_high_demand_period_request'
219
222
  require 'zernio-sdk/models/create_inbox_conversation201_response'
220
223
  require 'zernio-sdk/models/create_inbox_conversation201_response_data'
221
224
  require 'zernio-sdk/models/create_inbox_conversation400_response'
@@ -327,6 +330,8 @@ require 'zernio-sdk/models/ctwa_ad_request_body_video'
327
330
  require 'zernio-sdk/models/ctwa_ad_request_body_zips_inner'
328
331
  require 'zernio-sdk/models/ctwa_multi_response'
329
332
  require 'zernio-sdk/models/ctwa_single_response'
333
+ require 'zernio-sdk/models/custom_conversion'
334
+ require 'zernio-sdk/models/custom_conversion_result'
330
335
  require 'zernio-sdk/models/deactivate_sms_registration200_response'
331
336
  require 'zernio-sdk/models/delete_account_group200_response'
332
337
  require 'zernio-sdk/models/delete_ad_campaign200_response'
@@ -865,6 +870,7 @@ require 'zernio-sdk/models/list_conversion_associations200_response'
865
870
  require 'zernio-sdk/models/list_conversion_associations200_response_associations_inner'
866
871
  require 'zernio-sdk/models/list_conversion_destinations200_response'
867
872
  require 'zernio-sdk/models/list_conversion_destinations200_response_destinations_inner'
873
+ require 'zernio-sdk/models/list_custom_conversions200_response'
868
874
  require 'zernio-sdk/models/list_custom_fields200_response'
869
875
  require 'zernio-sdk/models/list_custom_fields200_response_fields_inner'
870
876
  require 'zernio-sdk/models/list_discord_guild_members200_response'