Class: Freeclimb::SMSTenDLCBrand
- Inherits:
-
Object
- Object
- Freeclimb::SMSTenDLCBrand
- Defined in:
- lib/freeclimb/models/sms_ten_dlc_brand.rb
Overview
A brand is a business identity behind the campaign.
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#account_id ⇒ Object
ID of the account that created this Queue.
-
#alt_business_id ⇒ Object
Alternate business identifier such as DUNS, LEI, or GIIN.
-
#alt_business_id_type ⇒ Object
The type of the Alternative business identifier.
-
#brand_id ⇒ Object
Unique identifier assigned to the brand by the registry.
-
#brand_relationship ⇒ Object
Brand relationship to the CSP.
-
#city ⇒ Object
City name.
-
#company_name ⇒ Object
(Required for Non-profit/private/public) Legal company name.
-
#country ⇒ Object
ISO2 2 characters country code.
-
#create_date ⇒ Object
Unix timestamp when brand was created.
-
#csp_id ⇒ Object
Unique identifier assigned to the csp by the registry.
-
#display_name ⇒ Object
Display or marketing name of the brand.
-
#ein ⇒ Object
(Required for Non-profit) Government assigned corporate tax ID.
-
#ein_issuing_country ⇒ Object
ISO2 2 characters country code.
-
#email ⇒ Object
Valid email address of brand support contact.
-
#entity_type ⇒ Object
Entity type behind the brand.
-
#first_name ⇒ Object
First or given name.
-
#identity_status ⇒ Object
TCR assessment of the brand identification status.
-
#ip_address ⇒ Object
IP address of the browser requesting to create brand identity.
-
#last_name ⇒ Object
Last or Surname.
-
#mock ⇒ Object
Test brand.
-
#optional_attributes ⇒ Object
Optional brand attributes.
-
#phone ⇒ Object
Valid phone number in e.164 international format.
-
#postal_code ⇒ Object
Postal codes.
-
#reference_id ⇒ Object
Caller supplied brand reference ID.
-
#state ⇒ Object
State.
-
#stock_exchange ⇒ Object
(Required for public company) stock exchange.
-
#stock_symbol ⇒ Object
(Required for public company) stock symbol.
-
#street ⇒ Object
Street number and name.
-
#universal_ein ⇒ Object
Universal EIN of Brand, Read Only.
-
#vertical ⇒ Object
Vertical or industry segment of the brand.
-
#website ⇒ Object
Brand website URL.
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_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 = {}) ⇒ SMSTenDLCBrand
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 = {}) ⇒ SMSTenDLCBrand
Initializes the object
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 261 262 263 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 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 222 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `Freeclimb::SMSTenDLCBrand` 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 `Freeclimb::SMSTenDLCBrand`. 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?(:'account_id') self.account_id = attributes[:'account_id'] end if attributes.key?(:'entity_type') self.entity_type = attributes[:'entity_type'] end if attributes.key?(:'csp_id') self.csp_id = attributes[:'csp_id'] end if attributes.key?(:'brand_id') self.brand_id = attributes[:'brand_id'] end if attributes.key?(:'first_name') self.first_name = attributes[:'first_name'] end if attributes.key?(:'last_name') self.last_name = attributes[:'last_name'] end if attributes.key?(:'display_name') self.display_name = attributes[:'display_name'] end if attributes.key?(:'company_name') self.company_name = attributes[:'company_name'] end if attributes.key?(:'ein') self.ein = attributes[:'ein'] end if attributes.key?(:'ein_issuing_country') self.ein_issuing_country = attributes[:'ein_issuing_country'] end if attributes.key?(:'phone') self.phone = attributes[:'phone'] end if attributes.key?(:'street') self.street = attributes[:'street'] end if attributes.key?(:'city') self.city = attributes[:'city'] end if attributes.key?(:'state') self.state = attributes[:'state'] end if attributes.key?(:'postal_code') self.postal_code = attributes[:'postal_code'] end if attributes.key?(:'country') self.country = attributes[:'country'] end if attributes.key?(:'email') self.email = attributes[:'email'] end if attributes.key?(:'stock_symbol') self.stock_symbol = attributes[:'stock_symbol'] end if attributes.key?(:'stock_exchange') self.stock_exchange = attributes[:'stock_exchange'] end if attributes.key?(:'ip_address') self.ip_address = attributes[:'ip_address'] end if attributes.key?(:'website') self.website = attributes[:'website'] end if attributes.key?(:'brand_relationship') self.brand_relationship = attributes[:'brand_relationship'] end if attributes.key?(:'vertical') self.vertical = attributes[:'vertical'] end if attributes.key?(:'alt_business_id') self.alt_business_id = attributes[:'alt_business_id'] end if attributes.key?(:'alt_business_id_type') self.alt_business_id_type = attributes[:'alt_business_id_type'] end if attributes.key?(:'universal_ein') self.universal_ein = attributes[:'universal_ein'] end if attributes.key?(:'reference_id') self.reference_id = attributes[:'reference_id'] end if attributes.key?(:'optional_attributes') if (value = attributes[:'optional_attributes']).is_a?(Hash) self.optional_attributes = value end end if attributes.key?(:'mock') self.mock = attributes[:'mock'] end if attributes.key?(:'identity_status') self.identity_status = attributes[:'identity_status'] end if attributes.key?(:'create_date') self.create_date = attributes[:'create_date'] end end |
Instance Attribute Details
#account_id ⇒ Object
ID of the account that created this Queue.
20 21 22 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 20 def account_id @account_id end |
#alt_business_id ⇒ Object
Alternate business identifier such as DUNS, LEI, or GIIN
89 90 91 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 89 def alt_business_id @alt_business_id end |
#alt_business_id_type ⇒ Object
The type of the Alternative business identifier
92 93 94 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 92 def alt_business_id_type @alt_business_id_type end |
#brand_id ⇒ Object
Unique identifier assigned to the brand by the registry.
29 30 31 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 29 def brand_id @brand_id end |
#brand_relationship ⇒ Object
Brand relationship to the CSP
83 84 85 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 83 def brand_relationship @brand_relationship end |
#city ⇒ Object
City name
56 57 58 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 56 def city @city end |
#company_name ⇒ Object
(Required for Non-profit/private/public) Legal company name.
41 42 43 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 41 def company_name @company_name end |
#country ⇒ Object
ISO2 2 characters country code. Example: US - United States
65 66 67 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 65 def country @country end |
#create_date ⇒ Object
Unix timestamp when brand was created.
110 111 112 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 110 def create_date @create_date end |
#csp_id ⇒ Object
Unique identifier assigned to the csp by the registry.
26 27 28 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 26 def csp_id @csp_id end |
#display_name ⇒ Object
Display or marketing name of the brand.
38 39 40 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 38 def display_name @display_name end |
#ein ⇒ Object
(Required for Non-profit) Government assigned corporate tax ID. EIN is 9-digits in U.S.
44 45 46 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 44 def ein @ein end |
#ein_issuing_country ⇒ Object
ISO2 2 characters country code. Example: US - United States
47 48 49 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 47 def ein_issuing_country @ein_issuing_country end |
#email ⇒ Object
Valid email address of brand support contact.
68 69 70 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 68 def email @email end |
#entity_type ⇒ Object
Entity type behind the brand. This is the form of business establishment.
23 24 25 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 23 def entity_type @entity_type end |
#first_name ⇒ Object
First or given name.
32 33 34 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 32 def first_name @first_name end |
#identity_status ⇒ Object
TCR assessment of the brand identification status.
107 108 109 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 107 def identity_status @identity_status end |
#ip_address ⇒ Object
IP address of the browser requesting to create brand identity.
77 78 79 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 77 def ip_address @ip_address end |
#last_name ⇒ Object
Last or Surname.
35 36 37 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 35 def last_name @last_name end |
#mock ⇒ Object
Test brand.
104 105 106 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 104 def mock @mock end |
#optional_attributes ⇒ Object
Optional brand attributes. Please refer to GET /enum/optionalAttributeNames for dictionary of optional attribute names.
101 102 103 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 101 def optional_attributes @optional_attributes end |
#phone ⇒ Object
Valid phone number in e.164 international format.
50 51 52 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 50 def phone @phone end |
#postal_code ⇒ Object
Postal codes. Use 5 digit zipcode for United States
62 63 64 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 62 def postal_code @postal_code end |
#reference_id ⇒ Object
Caller supplied brand reference ID. If supplied, the value must be unique across all submitted brands. Can be used to prevent duplicate brand registrations.
98 99 100 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 98 def reference_id @reference_id end |
#state ⇒ Object
State. Must be 2 letters code for United States.
59 60 61 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 59 def state @state end |
#stock_exchange ⇒ Object
(Required for public company) stock exchange.
74 75 76 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 74 def stock_exchange @stock_exchange end |
#stock_symbol ⇒ Object
(Required for public company) stock symbol.
71 72 73 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 71 def stock_symbol @stock_symbol end |
#street ⇒ Object
Street number and name.
53 54 55 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 53 def street @street end |
#universal_ein ⇒ Object
Universal EIN of Brand, Read Only.
95 96 97 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 95 def universal_ein @universal_ein end |
#vertical ⇒ Object
Vertical or industry segment of the brand.
86 87 88 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 86 def vertical @vertical end |
#website ⇒ Object
Brand website URL.
80 81 82 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 80 def website @website end |
Class Method Details
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
172 173 174 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 172 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
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 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 135 def self.attribute_map { :'account_id' => :'accountId', :'entity_type' => :'entityType', :'csp_id' => :'cspId', :'brand_id' => :'brandId', :'first_name' => :'firstName', :'last_name' => :'lastName', :'display_name' => :'displayName', :'company_name' => :'companyName', :'ein' => :'ein', :'ein_issuing_country' => :'einIssuingCountry', :'phone' => :'phone', :'street' => :'street', :'city' => :'city', :'state' => :'state', :'postal_code' => :'postalCode', :'country' => :'country', :'email' => :'email', :'stock_symbol' => :'stockSymbol', :'stock_exchange' => :'stockExchange', :'ip_address' => :'ipAddress', :'website' => :'website', :'brand_relationship' => :'brandRelationship', :'vertical' => :'vertical', :'alt_business_id' => :'altBusinessId', :'alt_business_id_type' => :'altBusinessIdType', :'universal_ein' => :'universalEin', :'reference_id' => :'referenceId', :'optional_attributes' => :'optionalAttributes', :'mock' => :'mock', :'identity_status' => :'identityStatus', :'create_date' => :'createDate' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
809 810 811 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 809 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
214 215 216 217 218 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 214 def self.openapi_nullable Set.new([ :'account_id', ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 177 def self.openapi_types { :'account_id' => :'String', :'entity_type' => :'String', :'csp_id' => :'String', :'brand_id' => :'String', :'first_name' => :'String', :'last_name' => :'String', :'display_name' => :'String', :'company_name' => :'String', :'ein' => :'String', :'ein_issuing_country' => :'String', :'phone' => :'String', :'street' => :'String', :'city' => :'String', :'state' => :'String', :'postal_code' => :'String', :'country' => :'String', :'email' => :'String', :'stock_symbol' => :'String', :'stock_exchange' => :'String', :'ip_address' => :'String', :'website' => :'String', :'brand_relationship' => :'String', :'vertical' => :'String', :'alt_business_id' => :'String', :'alt_business_id_type' => :'String', :'universal_ein' => :'String', :'reference_id' => :'String', :'optional_attributes' => :'Hash<String, Object>', :'mock' => :'Boolean', :'identity_status' => :'String', :'create_date' => :'Time' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 758 def ==(o) return true if self.equal?(o) self.class == o.class && account_id == o.account_id && entity_type == o.entity_type && csp_id == o.csp_id && brand_id == o.brand_id && first_name == o.first_name && last_name == o.last_name && display_name == o.display_name && company_name == o.company_name && ein == o.ein && ein_issuing_country == o.ein_issuing_country && phone == o.phone && street == o.street && city == o.city && state == o.state && postal_code == o.postal_code && country == o.country && email == o.email && stock_symbol == o.stock_symbol && stock_exchange == o.stock_exchange && ip_address == o.ip_address && website == o.website && brand_relationship == o.brand_relationship && vertical == o.vertical && alt_business_id == o.alt_business_id && alt_business_id_type == o.alt_business_id_type && universal_ein == o.universal_ein && reference_id == o.reference_id && optional_attributes == o.optional_attributes && mock == o.mock && identity_status == o.identity_status && create_date == o.create_date end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 839 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 = Freeclimb.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
910 911 912 913 914 915 916 917 918 919 920 921 922 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 910 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
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 816 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) 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
796 797 798 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 796 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
802 803 804 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 802 def hash [account_id, entity_type, csp_id, brand_id, first_name, last_name, display_name, company_name, ein, ein_issuing_country, phone, street, city, state, postal_code, country, email, stock_symbol, stock_exchange, ip_address, website, brand_relationship, vertical, alt_business_id, alt_business_id_type, universal_ein, reference_id, optional_attributes, mock, identity_status, create_date].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
364 365 366 367 368 369 370 371 372 373 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 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 364 def list_invalid_properties invalid_properties = Array.new if @entity_type.nil? invalid_properties.push('invalid value for "entity_type", entity_type cannot be nil.') end if @entity_type.to_s.length > 20 invalid_properties.push('invalid value for "entity_type", the character length must be smaller than or equal to 20.') end if !@first_name.nil? && @first_name.to_s.length > 100 invalid_properties.push('invalid value for "first_name", the character length must be smaller than or equal to 100.') end if !@last_name.nil? && @last_name.to_s.length > 100 invalid_properties.push('invalid value for "last_name", the character length must be smaller than or equal to 100.') end if @display_name.nil? invalid_properties.push('invalid value for "display_name", display_name cannot be nil.') end if @display_name.to_s.length > 255 invalid_properties.push('invalid value for "display_name", the character length must be smaller than or equal to 255.') end if !@company_name.nil? && @company_name.to_s.length > 255 invalid_properties.push('invalid value for "company_name", the character length must be smaller than or equal to 255.') end if !@ein.nil? && @ein.to_s.length > 21 invalid_properties.push('invalid value for "ein", the character length must be smaller than or equal to 21.') end if !@ein_issuing_country.nil? && @ein_issuing_country.to_s.length > 2 invalid_properties.push('invalid value for "ein_issuing_country", the character length must be smaller than or equal to 2.') end if @phone.nil? invalid_properties.push('invalid value for "phone", phone cannot be nil.') end if @phone.to_s.length > 20 invalid_properties.push('invalid value for "phone", the character length must be smaller than or equal to 20.') end if !@street.nil? && @street.to_s.length > 100 invalid_properties.push('invalid value for "street", the character length must be smaller than or equal to 100.') end if !@city.nil? && @city.to_s.length > 100 invalid_properties.push('invalid value for "city", the character length must be smaller than or equal to 100.') end if !@state.nil? && @state.to_s.length > 20 invalid_properties.push('invalid value for "state", the character length must be smaller than or equal to 20.') end if !@postal_code.nil? && @postal_code.to_s.length > 10 invalid_properties.push('invalid value for "postal_code", the character length must be smaller than or equal to 10.') end if @country.nil? invalid_properties.push('invalid value for "country", country cannot be nil.') end if @country.to_s.length > 2 invalid_properties.push('invalid value for "country", the character length must be smaller than or equal to 2.') end if @email.nil? invalid_properties.push('invalid value for "email", email cannot be nil.') end if @email.to_s.length > 100 invalid_properties.push('invalid value for "email", the character length must be smaller than or equal to 100.') end if !@stock_symbol.nil? && @stock_symbol.to_s.length > 10 invalid_properties.push('invalid value for "stock_symbol", the character length must be smaller than or equal to 10.') end if !@ip_address.nil? && @ip_address.to_s.length > 50 invalid_properties.push('invalid value for "ip_address", the character length must be smaller than or equal to 50.') end if !@website.nil? && @website.to_s.length > 100 invalid_properties.push('invalid value for "website", the character length must be smaller than or equal to 100.') end if @brand_relationship.nil? invalid_properties.push('invalid value for "brand_relationship", brand_relationship cannot be nil.') end if @vertical.nil? invalid_properties.push('invalid value for "vertical", vertical cannot be nil.') end if @vertical.to_s.length > 50 invalid_properties.push('invalid value for "vertical", the character length must be smaller than or equal to 50.') end if !@alt_business_id.nil? && @alt_business_id.to_s.length > 50 invalid_properties.push('invalid value for "alt_business_id", the character length must be smaller than or equal to 50.') end if !@reference_id.nil? && @reference_id.to_s.length > 50 invalid_properties.push('invalid value for "reference_id", the character length must be smaller than or equal to 50.') end if @mock.nil? invalid_properties.push('invalid value for "mock", mock cannot be nil.') end if @identity_status.nil? invalid_properties.push('invalid value for "identity_status", identity_status cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
886 887 888 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 886 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
892 893 894 895 896 897 898 899 900 901 902 903 904 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 892 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
880 881 882 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 880 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
487 488 489 490 491 492 493 494 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 487 def valid? if @account_id.nil? false else list_invalid_properties.length() == 0 end end |