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
Returns the value of attribute alt_business_id_type.
-
#brand_id ⇒ Object
Unique identifier assigned to the brand by the registry.
-
#brand_relationship ⇒ Object
Returns the value of attribute brand_relationship.
-
#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
Returns the value of attribute entity_type.
-
#first_name ⇒ Object
First or given name.
-
#identity_status ⇒ Object
Returns the value of attribute identity_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
Returns the value of attribute 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
-
#==(other) ⇒ 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?(other) ⇒ 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
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 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 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 215 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.
18 19 20 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 18 def account_id @account_id end |
#alt_business_id ⇒ Object
Alternate business identifier such as DUNS, LEI, or GIIN
84 85 86 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 84 def alt_business_id @alt_business_id end |
#alt_business_id_type ⇒ Object
Returns the value of attribute alt_business_id_type.
86 87 88 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 86 def alt_business_id_type @alt_business_id_type end |
#brand_id ⇒ Object
Unique identifier assigned to the brand by the registry.
26 27 28 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 26 def brand_id @brand_id end |
#brand_relationship ⇒ Object
Returns the value of attribute brand_relationship.
78 79 80 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 78 def brand_relationship @brand_relationship end |
#city ⇒ Object
City name
53 54 55 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 53 def city @city end |
#company_name ⇒ Object
(Required for Non-profit/private/public) Legal company name.
38 39 40 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 38 def company_name @company_name end |
#country ⇒ Object
ISO2 2 characters country code. Example: US - United States
62 63 64 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 62 def country @country end |
#create_date ⇒ Object
Unix timestamp when brand was created.
103 104 105 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 103 def create_date @create_date end |
#csp_id ⇒ Object
Unique identifier assigned to the csp by the registry.
23 24 25 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 23 def csp_id @csp_id end |
#display_name ⇒ Object
Display or marketing name of the brand.
35 36 37 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 35 def display_name @display_name end |
#ein ⇒ Object
(Required for Non-profit) Government assigned corporate tax ID. EIN is 9-digits in U.S.
41 42 43 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 41 def ein @ein end |
#ein_issuing_country ⇒ Object
ISO2 2 characters country code. Example: US - United States
44 45 46 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 44 def ein_issuing_country @ein_issuing_country end |
#email ⇒ Object
Valid email address of brand support contact.
65 66 67 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 65 def email @email end |
#entity_type ⇒ Object
Returns the value of attribute entity_type.
20 21 22 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 20 def entity_type @entity_type end |
#first_name ⇒ Object
First or given name.
29 30 31 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 29 def first_name @first_name end |
#identity_status ⇒ Object
Returns the value of attribute identity_status.
100 101 102 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 100 def identity_status @identity_status end |
#ip_address ⇒ Object
IP address of the browser requesting to create brand identity.
73 74 75 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 73 def ip_address @ip_address end |
#last_name ⇒ Object
Last or Surname.
32 33 34 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 32 def last_name @last_name end |
#mock ⇒ Object
Test brand.
98 99 100 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 98 def mock @mock end |
#optional_attributes ⇒ Object
Optional brand attributes. Please refer to GET /enum/optionalAttributeNames for dictionary of optional attribute names.
95 96 97 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 95 def optional_attributes @optional_attributes end |
#phone ⇒ Object
Valid phone number in e.164 international format.
47 48 49 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 47 def phone @phone end |
#postal_code ⇒ Object
Postal codes. Use 5 digit zipcode for United States
59 60 61 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 59 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.
92 93 94 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 92 def reference_id @reference_id end |
#state ⇒ Object
State. Must be 2 letters code for United States.
56 57 58 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 56 def state @state end |
#stock_exchange ⇒ Object
Returns the value of attribute stock_exchange.
70 71 72 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 70 def stock_exchange @stock_exchange end |
#stock_symbol ⇒ Object
(Required for public company) stock symbol.
68 69 70 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 68 def stock_symbol @stock_symbol end |
#street ⇒ Object
Street number and name.
50 51 52 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 50 def street @street end |
#universal_ein ⇒ Object
Universal EIN of Brand, Read Only.
89 90 91 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 89 def universal_ein @universal_ein end |
#vertical ⇒ Object
Vertical or industry segment of the brand.
81 82 83 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 81 def vertical @vertical end |
#website ⇒ Object
Brand website URL.
76 77 78 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 76 def website @website end |
Class Method Details
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
165 166 167 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 165 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
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 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 128 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
747 748 749 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 747 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
207 208 209 210 211 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 207 def self.openapi_nullable Set.new([ :account_id ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 170 def self.openapi_types { account_id: :String, entity_type: :SMSTenDLCBrandEntityType, 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: :SMSTenDLCBrandStockExchange, ip_address: :String, website: :String, brand_relationship: :SMSTenDLCBrandRelationship, vertical: :String, alt_business_id: :String, alt_business_id_type: :SMSTenDLCBrandAltBusinessIdType, universal_ein: :String, reference_id: :String, optional_attributes: :"Hash<String, Object>", mock: :Boolean, identity_status: :SMSTenDLCBrandIdentityStatus, create_date: :Time } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 696 def ==(other) return true if equal?(other) self.class == other.class && account_id == other.account_id && entity_type == other.entity_type && csp_id == other.csp_id && brand_id == other.brand_id && first_name == other.first_name && last_name == other.last_name && display_name == other.display_name && company_name == other.company_name && ein == other.ein && ein_issuing_country == other.ein_issuing_country && phone == other.phone && street == other.street && city == other.city && state == other.state && postal_code == other.postal_code && country == other.country && email == other.email && stock_symbol == other.stock_symbol && stock_exchange == other.stock_exchange && ip_address == other.ip_address && website == other.website && brand_relationship == other.brand_relationship && vertical == other.vertical && alt_business_id == other.alt_business_id && alt_business_id_type == other.alt_business_id_type && universal_ein == other.universal_ein && reference_id == other.reference_id && optional_attributes == other.optional_attributes && mock == other.mock && identity_status == other.identity_status && create_date == other.create_date end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 777 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
848 849 850 851 852 853 854 855 856 857 858 859 860 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 848 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
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 754 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) 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) send(:"#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? send(:"#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end end self end |
#eql?(other) ⇒ Boolean
734 735 736 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 734 def eql?(other) self == other end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
740 741 742 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 740 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?
357 358 359 360 361 362 363 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 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 357 def list_invalid_properties invalid_properties = [] if @entity_type.nil? invalid_properties.push('invalid value for "entity_type", entity_type cannot be nil.') 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)
824 825 826 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 824 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
830 831 832 833 834 835 836 837 838 839 840 841 842 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 830 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = 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
818 819 820 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 818 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
476 477 478 479 480 481 482 |
# File 'lib/freeclimb/models/sms_ten_dlc_brand.rb', line 476 def valid? if @account_id.nil? false else list_invalid_properties.length == 0 end end |