Class: Bfwd::Product

Inherits:
Object
  • Object
show all
Defined in:
lib/bf_ruby2/models/product.rb

Overview

Product

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Product

Initializes the object

Parameters:

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

    Model attributes in the form of hash



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
176
177
178
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
# File 'lib/bf_ruby2/models/product.rb', line 142

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}

  if attributes.has_key?(:'created')
    self.created = attributes[:'created']
  end

  if attributes.has_key?(:'changedBy')
    self.changed_by = attributes[:'changedBy']
  end

  if attributes.has_key?(:'updated')
    self.updated = attributes[:'updated']
  end

  if attributes.has_key?(:'id')
    self.id = attributes[:'id']
  end

  if attributes.has_key?(:'crmID')
    self.crm_id = attributes[:'crmID']
  end

  if attributes.has_key?(:'accountID')
    self. = attributes[:'accountID']
  end

  if attributes.has_key?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.has_key?(:'publicName')
    self.public_name = attributes[:'publicName']
  end

  if attributes.has_key?(:'description')
    self.description = attributes[:'description']
  end

  if attributes.has_key?(:'duration')
    self.duration = attributes[:'duration']
  end

  if attributes.has_key?(:'durationPeriod')
    self.duration_period = attributes[:'durationPeriod']
  end

  if attributes.has_key?(:'metadata')
    self. = attributes[:'metadata']
  end

  if attributes.has_key?(:'trial')
    self.trial = attributes[:'trial']
  end

  if attributes.has_key?(:'trialPeriod')
    self.trial_period = attributes[:'trialPeriod']
  end

  if attributes.has_key?(:'productType')
    self.product_type = attributes[:'productType']
  end

  if attributes.has_key?(:'deleted')
    self.deleted = attributes[:'deleted']
  else
    self.deleted = false
  end

  if attributes.has_key?(:'startDate')
    self.start_date = attributes[:'startDate']
  end

  if attributes.has_key?(:'paymentTerms')
    self.payment_terms = attributes[:'paymentTerms']
  end

end

Instance Attribute Details

#account_idObject

"description":"","verbs":[]



34
35
36
# File 'lib/bf_ruby2/models/product.rb', line 34

def 
  @account_id
end

#changed_byObject

{ "description" : "ID of the user who last updated the entity.", "verbs":[] }



22
23
24
# File 'lib/bf_ruby2/models/product.rb', line 22

def changed_by
  @changed_by
end

#createdObject

{ "description" : "The UTC DateTime when the object was created.", "verbs":[] }



19
20
21
# File 'lib/bf_ruby2/models/product.rb', line 19

def created
  @created
end

#crm_idObject



31
32
33
# File 'lib/bf_ruby2/models/product.rb', line 31

def crm_id
  @crm_id
end

#deletedObject

href="\"GET\"">description“:”“,”verbs“:



63
64
65
# File 'lib/bf_ruby2/models/product.rb', line 63

def deleted
  @deleted
end

#descriptionObject

description — for your benefit — of the product. For example: you could explain what service this product entitles a customer to.“,”verbs“:



43
44
45
# File 'lib/bf_ruby2/models/product.rb', line 43

def description
  @description
end

#durationObject

of length-measures which constitute the product’s period.“,”verbs“:



46
47
48
# File 'lib/bf_ruby2/models/product.rb', line 46

def duration
  @duration
end

#duration_periodObject

describing the magnitude of the product’s period.“,”verbs“:



49
50
51
# File 'lib/bf_ruby2/models/product.rb', line 49

def duration_period
  @duration_period
end

#idObject

uniquely identifying this product.“,”verbs“:



28
29
30
# File 'lib/bf_ruby2/models/product.rb', line 28

def id
  @id
end

#metadataObject

Returns the value of attribute metadata.



51
52
53
# File 'lib/bf_ruby2/models/product.rb', line 51

def 
  
end

#nameObject

unique name — for your benefit — used to identify this product within BillForward. It should reflect the fact that this product confers some service to a customer (e.g. \"Gold membership\").
The product can also be defined by the frequency with which it recurs (e.g. \"Monthly Gold membership\").
Remember also that rate plans can override the timing prescribed by their product. If you intend to override that timing, you may consider the product’s period duration to be an unimportant factor when it comes to naming it.“,”verbs“:



37
38
39
# File 'lib/bf_ruby2/models/product.rb', line 37

def name
  @name
end

#payment_termsObject

Returns the value of attribute payment_terms.



68
69
70
# File 'lib/bf_ruby2/models/product.rb', line 68

def payment_terms
  @payment_terms
end

#product_typeObject

frequency of the product — either recurring or non-recurring.“,”verbs“:



60
61
62
# File 'lib/bf_ruby2/models/product.rb', line 60

def product_type
  @product_type
end

#public_nameObject

friendly non-unique name used to identify this product“,”verbs“:



40
41
42
# File 'lib/bf_ruby2/models/product.rb', line 40

def public_name
  @public_name
end

#start_dateObject

"description":"","verbs":[]



66
67
68
# File 'lib/bf_ruby2/models/product.rb', line 66

def start_date
  @start_date
end

#trialObject

of trial-length-measures which constitute the product’s trial period“,”verbs“:



54
55
56
# File 'lib/bf_ruby2/models/product.rb', line 54

def trial
  @trial
end

#trial_periodObject

describing the magnitude of the product’s trial period.“,”verbs“:



57
58
59
# File 'lib/bf_ruby2/models/product.rb', line 57

def trial_period
  @trial_period
end

#updatedObject

{ "description" : "The UTC DateTime when the object was last updated.", "verbs":[] }



25
26
27
# File 'lib/bf_ruby2/models/product.rb', line 25

def updated
  @updated
end

Class Method Details

.attribute_mapObject

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



93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/bf_ruby2/models/product.rb', line 93

def self.attribute_map
  {
    :'created' => :'created',
    :'changed_by' => :'changedBy',
    :'updated' => :'updated',
    :'id' => :'id',
    :'crm_id' => :'crmID',
    :'account_id' => :'accountID',
    :'name' => :'name',
    :'public_name' => :'publicName',
    :'description' => :'description',
    :'duration' => :'duration',
    :'duration_period' => :'durationPeriod',
    :'metadata' => :'metadata',
    :'trial' => :'trial',
    :'trial_period' => :'trialPeriod',
    :'product_type' => :'productType',
    :'deleted' => :'deleted',
    :'start_date' => :'startDate',
    :'payment_terms' => :'paymentTerms'
  }
end

.swagger_typesObject

Attribute type mapping.



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/bf_ruby2/models/product.rb', line 117

def self.swagger_types
  {
    :'created' => :'DateTime',
    :'changed_by' => :'String',
    :'updated' => :'DateTime',
    :'id' => :'String',
    :'crm_id' => :'String',
    :'account_id' => :'String',
    :'name' => :'String',
    :'public_name' => :'String',
    :'description' => :'String',
    :'duration' => :'Integer',
    :'duration_period' => :'String',
    :'metadata' => :'DynamicMetadata',
    :'trial' => :'Integer',
    :'trial_period' => :'String',
    :'product_type' => :'String',
    :'deleted' => :'BOOLEAN',
    :'start_date' => :'DateTime',
    :'payment_terms' => :'Integer'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
# File 'lib/bf_ruby2/models/product.rb', line 315

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      created == o.created &&
      changed_by == o.changed_by &&
      updated == o.updated &&
      id == o.id &&
      crm_id == o.crm_id &&
       == o. &&
      name == o.name &&
      public_name == o.public_name &&
      description == o.description &&
      duration == o.duration &&
      duration_period == o.duration_period &&
       == o. &&
      trial == o.trial &&
      trial_period == o.trial_period &&
      product_type == o.product_type &&
      deleted == o.deleted &&
      start_date == o.start_date &&
      payment_terms == o.payment_terms
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
# File 'lib/bf_ruby2/models/product.rb', line 374

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = Bfwd.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



440
441
442
443
444
445
446
447
448
449
450
451
452
# File 'lib/bf_ruby2/models/product.rb', line 440

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map{ |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
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



353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
# File 'lib/bf_ruby2/models/product.rb', line 353

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


340
341
342
# File 'lib/bf_ruby2/models/product.rb', line 340

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



346
347
348
# File 'lib/bf_ruby2/models/product.rb', line 346

def hash
  [created, changed_by, updated, id, crm_id, , name, public_name, description, duration, duration_period, , trial, trial_period, product_type, deleted, start_date, payment_terms].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properies with the reasons



226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# File 'lib/bf_ruby2/models/product.rb', line 226

def list_invalid_properties
  invalid_properties = Array.new
  if @name.nil?
    invalid_properties.push("invalid value for 'name', name cannot be nil.")
  end

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

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

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

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

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

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

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

  return invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



420
421
422
# File 'lib/bf_ruby2/models/product.rb', line 420

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



426
427
428
429
430
431
432
433
434
# File 'lib/bf_ruby2/models/product.rb', line 426

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



414
415
416
# File 'lib/bf_ruby2/models/product.rb', line 414

def to_s
  to_hash.to_s
end

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/bf_ruby2/models/product.rb', line 265

def valid?
  return false if @name.nil?
  return false if @description.nil?
  return false if @duration.nil?
  return false if @duration_period.nil?
  duration_period_validator = EnumAttributeValidator.new('String', ["minutes", "days", "months", "years"])
  return false unless duration_period_validator.valid?(@duration_period)
  return false if @trial.nil?
  return false if @trial_period.nil?
  trial_period_validator = EnumAttributeValidator.new('String', ["none", "minutes", "days", "months"])
  return false unless trial_period_validator.valid?(@trial_period)
  return false if @product_type.nil?
  product_type_validator = EnumAttributeValidator.new('String', ["nonrecurring", "recurring"])
  return false unless product_type_validator.valid?(@product_type)
  return false if @deleted.nil?
  return true
end