Class: SyncteraRubySdk::CardProductResponse
- Inherits:
-
Object
- Object
- SyncteraRubySdk::CardProductResponse
- Defined in:
- lib/synctera_ruby_sdk/models/card_product_response.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#active ⇒ Object
Indicates whether the Card Product is active.
-
#card_program_id ⇒ Object
Card Program ID.
-
#color ⇒ Object
Color code for dynamic card elements such as PAN and card holder name.
-
#creation_time ⇒ Object
The timestamp representing when the Card Product was created.
-
#digital_wallet_tokenization ⇒ Object
Returns the value of attribute digital_wallet_tokenization.
-
#end_date ⇒ Object
The time when the Card Product is decommissioned.
-
#form ⇒ Object
PHYSICAL or VIRTUAL.
-
#id ⇒ Object
Card Product ID.
-
#image ⇒ Object
Indicates whether or not there is an overlay image of the card product available.
-
#image_mode ⇒ Object
Returns the value of attribute image_mode.
-
#issue_without_kyc ⇒ Object
Allow issuing cards on this product without requiring KYC.
-
#last_modified_time ⇒ Object
The timestamp representing when the Card Product was last modified.
-
#name ⇒ Object
The name of the Card Product.
-
#orientation ⇒ Object
Card orientation.
-
#package_id ⇒ Object
Card fulfillment provider’s package ID.
-
#physical_card_format ⇒ Object
Returns the value of attribute physical_card_format.
-
#return_address ⇒ Object
Returns the value of attribute return_address.
-
#start_date ⇒ Object
The time when the Card Product goes live.
-
#three_ds_policy ⇒ Object
Returns the value of attribute three_ds_policy.
-
#txn_enhancer ⇒ Object
Returns the value of attribute txn_enhancer.
Class Method Summary collapse
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3).
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ CardProductResponse
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ CardProductResponse
Initializes the object
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 223 224 225 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 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 166 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `SyncteraRubySdk::CardProductResponse` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `SyncteraRubySdk::CardProductResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'form') self.form = attributes[:'form'] end if attributes.key?(:'active') self.active = attributes[:'active'] end if attributes.key?(:'card_program_id') self.card_program_id = attributes[:'card_program_id'] end if attributes.key?(:'color') self.color = attributes[:'color'] end if attributes.key?(:'creation_time') self.creation_time = attributes[:'creation_time'] end if attributes.key?(:'digital_wallet_tokenization') self.digital_wallet_tokenization = attributes[:'digital_wallet_tokenization'] end if attributes.key?(:'end_date') self.end_date = attributes[:'end_date'] end if attributes.key?(:'id') self.id = attributes[:'id'] end if attributes.key?(:'image') self.image = attributes[:'image'] end if attributes.key?(:'image_mode') self.image_mode = attributes[:'image_mode'] end if attributes.key?(:'issue_without_kyc') self.issue_without_kyc = attributes[:'issue_without_kyc'] end if attributes.key?(:'last_modified_time') self.last_modified_time = attributes[:'last_modified_time'] end if attributes.key?(:'name') self.name = attributes[:'name'] end if attributes.key?(:'orientation') self.orientation = attributes[:'orientation'] end if attributes.key?(:'package_id') self.package_id = attributes[:'package_id'] end if attributes.key?(:'physical_card_format') self.physical_card_format = attributes[:'physical_card_format'] end if attributes.key?(:'return_address') self.return_address = attributes[:'return_address'] end if attributes.key?(:'start_date') self.start_date = attributes[:'start_date'] end if attributes.key?(:'three_ds_policy') self.three_ds_policy = attributes[:'three_ds_policy'] end if attributes.key?(:'txn_enhancer') self.txn_enhancer = attributes[:'txn_enhancer'] else self.txn_enhancer = 'NONE' end end |
Instance Attribute Details
#active ⇒ Object
Indicates whether the Card Product is active
22 23 24 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 22 def active @active end |
#card_program_id ⇒ Object
Card Program ID
25 26 27 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 25 def card_program_id @card_program_id end |
#color ⇒ Object
Color code for dynamic card elements such as PAN and card holder name
28 29 30 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 28 def color @color end |
#creation_time ⇒ Object
The timestamp representing when the Card Product was created
31 32 33 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 31 def creation_time @creation_time end |
#digital_wallet_tokenization ⇒ Object
Returns the value of attribute digital_wallet_tokenization.
33 34 35 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 33 def digital_wallet_tokenization @digital_wallet_tokenization end |
#end_date ⇒ Object
The time when the Card Product is decommissioned
36 37 38 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 36 def end_date @end_date end |
#form ⇒ Object
PHYSICAL or VIRTUAL.
19 20 21 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 19 def form @form end |
#id ⇒ Object
Card Product ID
39 40 41 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 39 def id @id end |
#image ⇒ Object
Indicates whether or not there is an overlay image of the card product available
42 43 44 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 42 def image @image end |
#image_mode ⇒ Object
Returns the value of attribute image_mode.
44 45 46 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 44 def image_mode @image_mode end |
#issue_without_kyc ⇒ Object
Allow issuing cards on this product without requiring KYC
47 48 49 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 47 def issue_without_kyc @issue_without_kyc end |
#last_modified_time ⇒ Object
The timestamp representing when the Card Product was last modified
50 51 52 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 50 def last_modified_time @last_modified_time end |
#name ⇒ Object
The name of the Card Product
53 54 55 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 53 def name @name end |
#orientation ⇒ Object
Card orientation
56 57 58 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 56 def orientation @orientation end |
#package_id ⇒ Object
Card fulfillment provider’s package ID
59 60 61 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 59 def package_id @package_id end |
#physical_card_format ⇒ Object
Returns the value of attribute physical_card_format.
61 62 63 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 61 def physical_card_format @physical_card_format end |
#return_address ⇒ Object
Returns the value of attribute return_address.
63 64 65 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 63 def return_address @return_address end |
#start_date ⇒ Object
The time when the Card Product goes live
66 67 68 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 66 def start_date @start_date end |
#three_ds_policy ⇒ Object
Returns the value of attribute three_ds_policy.
68 69 70 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 68 def three_ds_policy @three_ds_policy end |
#txn_enhancer ⇒ Object
Returns the value of attribute txn_enhancer.
70 71 72 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 70 def txn_enhancer @txn_enhancer end |
Class Method Details
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
121 122 123 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 121 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 95 def self.attribute_map { :'form' => :'form', :'active' => :'active', :'card_program_id' => :'card_program_id', :'color' => :'color', :'creation_time' => :'creation_time', :'digital_wallet_tokenization' => :'digital_wallet_tokenization', :'end_date' => :'end_date', :'id' => :'id', :'image' => :'image', :'image_mode' => :'image_mode', :'issue_without_kyc' => :'issue_without_kyc', :'last_modified_time' => :'last_modified_time', :'name' => :'name', :'orientation' => :'orientation', :'package_id' => :'package_id', :'physical_card_format' => :'physical_card_format', :'return_address' => :'return_address', :'start_date' => :'start_date', :'three_ds_policy' => :'three_ds_policy', :'txn_enhancer' => :'txn_enhancer' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
465 466 467 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 465 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3)
158 159 160 161 162 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 158 def self.openapi_all_of [ :'CardProduct' ] end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
152 153 154 155 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 152 def self.openapi_nullable Set.new([ ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 126 def self.openapi_types { :'form' => :'String', :'active' => :'Boolean', :'card_program_id' => :'String', :'color' => :'String', :'creation_time' => :'Time', :'digital_wallet_tokenization' => :'DigitalWalletTokenization', :'end_date' => :'Time', :'id' => :'String', :'image' => :'Boolean', :'image_mode' => :'CardImageMode', :'issue_without_kyc' => :'Boolean', :'last_modified_time' => :'Time', :'name' => :'String', :'orientation' => :'String', :'package_id' => :'String', :'physical_card_format' => :'PhysicalCardFormat', :'return_address' => :'Shipping', :'start_date' => :'Time', :'three_ds_policy' => :'ThreeDsPolicy', :'txn_enhancer' => :'TxnEnhancer' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 425 def ==(o) return true if self.equal?(o) self.class == o.class && form == o.form && active == o.active && card_program_id == o.card_program_id && color == o.color && creation_time == o.creation_time && digital_wallet_tokenization == o.digital_wallet_tokenization && end_date == o.end_date && id == o.id && image == o.image && image_mode == o.image_mode && issue_without_kyc == o.issue_without_kyc && last_modified_time == o.last_modified_time && name == o.name && orientation == o.orientation && package_id == o.package_id && physical_card_format == o.physical_card_format && return_address == o.return_address && start_date == o.start_date && three_ds_policy == o.three_ds_policy && txn_enhancer == o.txn_enhancer end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 496 def _deserialize(type, value) case type.to_sym when :Time Time.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 # models (e.g. Pet) or oneOf klass = SyncteraRubySdk.const_get(type) klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.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
567 568 569 570 571 572 573 574 575 576 577 578 579 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 567 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
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 472 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) self.class.openapi_types.each_pair do |key, type| if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key) self.send("#{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[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 end self end |
#eql?(o) ⇒ Boolean
452 453 454 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 452 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
458 459 460 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 458 def hash [form, active, card_program_id, color, creation_time, digital_wallet_tokenization, end_date, id, image, image_mode, issue_without_kyc, last_modified_time, name, orientation, package_id, physical_card_format, return_address, start_date, three_ds_policy, txn_enhancer].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 264 def list_invalid_properties invalid_properties = Array.new if @form.nil? invalid_properties.push('invalid value for "form", form cannot be nil.') end if @active.nil? invalid_properties.push('invalid value for "active", active cannot be nil.') end if @card_program_id.nil? invalid_properties.push('invalid value for "card_program_id", card_program_id cannot be nil.') end pattern = Regexp.new(/^[0-9A-F]{6}$/) if !@color.nil? && @color !~ pattern invalid_properties.push("invalid value for \"color\", must conform to the pattern #{pattern}.") end if @creation_time.nil? invalid_properties.push('invalid value for "creation_time", creation_time cannot be nil.') end if @digital_wallet_tokenization.nil? invalid_properties.push('invalid value for "digital_wallet_tokenization", digital_wallet_tokenization cannot be nil.') end if @end_date.nil? invalid_properties.push('invalid value for "end_date", end_date cannot be nil.') end if @id.nil? invalid_properties.push('invalid value for "id", id cannot be nil.') end if @last_modified_time.nil? invalid_properties.push('invalid value for "last_modified_time", last_modified_time cannot be nil.') end if @name.nil? invalid_properties.push('invalid value for "name", name cannot be nil.') end if @name.to_s.length > 40 invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 40.') end if @name.to_s.length < 1 invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.') end if !@package_id.nil? && @package_id.to_s.length > 50 invalid_properties.push('invalid value for "package_id", the character length must be smaller than or equal to 50.') end if !@package_id.nil? && @package_id.to_s.length < 1 invalid_properties.push('invalid value for "package_id", the character length must be great than or equal to 1.') end if @start_date.nil? invalid_properties.push('invalid value for "start_date", start_date cannot be nil.') end if @three_ds_policy.nil? invalid_properties.push('invalid value for "three_ds_policy", three_ds_policy cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
543 544 545 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 543 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
549 550 551 552 553 554 555 556 557 558 559 560 561 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 549 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 |
#to_s ⇒ String
Returns the string representation of the object
537 538 539 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 537 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
# File 'lib/synctera_ruby_sdk/models/card_product_response.rb', line 336 def valid? return false if @form.nil? form_validator = EnumAttributeValidator.new('String', ["PHYSICAL", "VIRTUAL"]) return false unless form_validator.valid?(@form) return false if @active.nil? return false if @card_program_id.nil? return false if !@color.nil? && @color !~ Regexp.new(/^[0-9A-F]{6}$/) return false if @creation_time.nil? return false if @digital_wallet_tokenization.nil? return false if @end_date.nil? return false if @id.nil? return false if @last_modified_time.nil? return false if @name.nil? return false if @name.to_s.length > 40 return false if @name.to_s.length < 1 orientation_validator = EnumAttributeValidator.new('String', ["HORIZONTAL", "VERTICAL"]) return false unless orientation_validator.valid?(@orientation) return false if !@package_id.nil? && @package_id.to_s.length > 50 return false if !@package_id.nil? && @package_id.to_s.length < 1 return false if @start_date.nil? return false if @three_ds_policy.nil? true end |