Class: PinterestSdkClient::CreateMMMReportRequest

Inherits:
ApiModelBase
  • Object
show all
Defined in:
lib/pinterest_sdk/models/create_mmm_report_request.rb

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ApiModelBase

_deserialize, #_to_hash, #to_body, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ CreateMMMReportRequest

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 110

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `PinterestSdkClient::CreateMMMReportRequest` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  acceptable_attribute_map = self.class.acceptable_attribute_map
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!acceptable_attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `PinterestSdkClient::CreateMMMReportRequest`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'countries')
    if (value = attributes[:'countries']).is_a?(Array)
      self.countries = value
    end
  end

  if attributes.key?(:'columns')
    if (value = attributes[:'columns']).is_a?(Array)
      self.columns = value
    end
  else
    self.columns = nil
  end

  if attributes.key?(:'end_date')
    self.end_date = attributes[:'end_date']
  else
    self.end_date = nil
  end

  if attributes.key?(:'granularity')
    self.granularity = attributes[:'granularity']
  else
    self.granularity = nil
  end

  if attributes.key?(:'level')
    self.level = attributes[:'level']
  else
    self.level = nil
  end

  if attributes.key?(:'report_name')
    self.report_name = attributes[:'report_name']
  else
    self.report_name = nil
  end

  if attributes.key?(:'start_date')
    self.start_date = attributes[:'start_date']
  else
    self.start_date = nil
  end

  if attributes.key?(:'targeting_types')
    if (value = attributes[:'targeting_types']).is_a?(Array)
      self.targeting_types = value
    end
  else
    self.targeting_types = nil
  end
end

Instance Attribute Details

#columnsObject

Metric and entity columns



22
23
24
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 22

def columns
  @columns
end

#countriesObject

A List of countries for filtering



19
20
21
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 19

def countries
  @countries
end

#end_dateObject

Metric report end date (UTC). Format: YYYY-MM-DD



25
26
27
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 25

def end_date
  @end_date
end

#granularityObject

DAY - metrics are broken down daily.
WEEK - metrics are broken down weekly.



28
29
30
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 28

def granularity
  @granularity
end

#levelObject

Level of the report



31
32
33
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 31

def level
  @level
end

#report_nameObject

Name of the Marketing Mix Modeling (MMM) report



34
35
36
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 34

def report_name
  @report_name
end

#start_dateObject

Metric report start date (UTC). Format: YYYY-MM-DD



37
38
39
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 37

def start_date
  @start_date
end

#targeting_typesObject

List of targeting types



40
41
42
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 40

def targeting_types
  @targeting_types
end

Class Method Details

.acceptable_attribute_mapObject

Returns attribute mapping this model knows about



79
80
81
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 79

def self.acceptable_attribute_map
  attribute_map
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



84
85
86
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 84

def self.acceptable_attributes
  acceptable_attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 65

def self.attribute_map
  {
    :'countries' => :'countries',
    :'columns' => :'columns',
    :'end_date' => :'end_date',
    :'granularity' => :'granularity',
    :'level' => :'level',
    :'report_name' => :'report_name',
    :'start_date' => :'start_date',
    :'targeting_types' => :'targeting_types'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 371

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = nil
    elsif type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



103
104
105
106
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 103

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 89

def self.openapi_types
  {
    :'countries' => :'Array<TargetingAdvertiserCountry>',
    :'columns' => :'Array<MMMReportingColumn>',
    :'end_date' => :'String',
    :'granularity' => :'String',
    :'level' => :'String',
    :'report_name' => :'String',
    :'start_date' => :'String',
    :'targeting_types' => :'Array<MMMReportingTargetingType>'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



343
344
345
346
347
348
349
350
351
352
353
354
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 343

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      countries == o.countries &&
      columns == o.columns &&
      end_date == o.end_date &&
      granularity == o.granularity &&
      level == o.level &&
      report_name == o.report_name &&
      start_date == o.start_date &&
      targeting_types == o.targeting_types
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


358
359
360
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 358

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



364
365
366
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 364

def hash
  [countries, columns, end_date, granularity, level, report_name, start_date, targeting_types].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 179

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  invalid_properties = Array.new
  if @columns.nil?
    invalid_properties.push('invalid value for "columns", columns cannot be nil.')
  end

  if @end_date.nil?
    invalid_properties.push('invalid value for "end_date", end_date cannot be nil.')
  end

  pattern = Regexp.new(/^(\d{4})-(\d{2})-(\d{2})$/)
  if @end_date !~ pattern
    invalid_properties.push("invalid value for \"end_date\", must conform to the pattern #{pattern}.")
  end

  if @granularity.nil?
    invalid_properties.push('invalid value for "granularity", granularity cannot be nil.')
  end

  if @level.nil?
    invalid_properties.push('invalid value for "level", level cannot be nil.')
  end

  if @report_name.nil?
    invalid_properties.push('invalid value for "report_name", report_name cannot be nil.')
  end

  if @start_date.nil?
    invalid_properties.push('invalid value for "start_date", start_date cannot be nil.')
  end

  pattern = Regexp.new(/^(\d{4})-(\d{2})-(\d{2})$/)
  if @start_date !~ pattern
    invalid_properties.push("invalid value for \"start_date\", must conform to the pattern #{pattern}.")
  end

  if @targeting_types.nil?
    invalid_properties.push('invalid value for "targeting_types", targeting_types cannot be nil.')
  end

  if @targeting_types.length > 5
    invalid_properties.push('invalid value for "targeting_types", number of items must be less than or equal to 5.')
  end

  if @targeting_types.length < 1
    invalid_properties.push('invalid value for "targeting_types", number of items must be greater than or equal to 1.')
  end

  invalid_properties
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



393
394
395
396
397
398
399
400
401
402
403
404
405
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 393

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
# File 'lib/pinterest_sdk/models/create_mmm_report_request.rb', line 233

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  return false if @columns.nil?
  return false if @end_date.nil?
  return false if @end_date !~ Regexp.new(/^(\d{4})-(\d{2})-(\d{2})$/)
  return false if @granularity.nil?
  granularity_validator = EnumAttributeValidator.new('String', ["DAY", "WEEK"])
  return false unless granularity_validator.valid?(@granularity)
  return false if @level.nil?
  level_validator = EnumAttributeValidator.new('String', ["CAMPAIGN_TARGETING", "AD_GROUP_TARGETING"])
  return false unless level_validator.valid?(@level)
  return false if @report_name.nil?
  return false if @start_date.nil?
  return false if @start_date !~ Regexp.new(/^(\d{4})-(\d{2})-(\d{2})$/)
  return false if @targeting_types.nil?
  return false if @targeting_types.length > 5
  return false if @targeting_types.length < 1
  true
end