class VeloPayments::CreatePayeesCSVRequest2

Attributes

address_city[RW]
address_country[RW]

Must be a 2 character country code - per ISO 3166-1

address_county_or_province[RW]
address_line1[RW]
address_line2[RW]
address_line3[RW]
address_line4[RW]
address_zip_or_postcode[RW]
challenge_description[RW]
challenge_value[RW]
company_ein[RW]
company_name[RW]
company_operating_name[RW]
email[RW]
individual_date_of_birth[RW]

Must not be date in future. Example - 1970-05-20

individual_first_name[RW]
individual_last_name[RW]
individual_national_identification[RW]
individual_other_names[RW]
individual_title[RW]
payee_language[RW]
payment_channel_account_name[RW]
payment_channel_account_number[RW]

Either routing number and account number or only iban must be set

payment_channel_country_code[RW]

Must be a 2 character country code - per ISO 3166-1

payment_channel_currency[RW]
payment_channel_iban[RW]

Must match the regular expression “`^[A-Za-z0-9]+$“`.

payment_channel_routing_number[RW]

Either routing number and account number or only iban must be set

remote_id[RW]
type[RW]

Public Class Methods

attribute_map() click to toggle source

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

# File lib/velopayments/models/create_payees_csv_request2.rb, line 104
def self.attribute_map
  {
    :'type' => :'type',
    :'remote_id' => :'remoteId',
    :'email' => :'email',
    :'address_line1' => :'addressLine1',
    :'address_line2' => :'addressLine2',
    :'address_line3' => :'addressLine3',
    :'address_line4' => :'addressLine4',
    :'address_city' => :'addressCity',
    :'address_county_or_province' => :'addressCountyOrProvince',
    :'address_zip_or_postcode' => :'addressZipOrPostcode',
    :'address_country' => :'addressCountry',
    :'individual_national_identification' => :'individualNationalIdentification',
    :'individual_date_of_birth' => :'individualDateOfBirth',
    :'individual_title' => :'individualTitle',
    :'individual_first_name' => :'individualFirstName',
    :'individual_other_names' => :'individualOtherNames',
    :'individual_last_name' => :'individualLastName',
    :'company_name' => :'companyName',
    :'company_ein' => :'companyEIN',
    :'company_operating_name' => :'companyOperatingName',
    :'payment_channel_account_number' => :'paymentChannelAccountNumber',
    :'payment_channel_routing_number' => :'paymentChannelRoutingNumber',
    :'payment_channel_account_name' => :'paymentChannelAccountName',
    :'payment_channel_iban' => :'paymentChannelIban',
    :'payment_channel_country_code' => :'paymentChannelCountryCode',
    :'payment_channel_currency' => :'paymentChannelCurrency',
    :'challenge_description' => :'challengeDescription',
    :'challenge_value' => :'challengeValue',
    :'payee_language' => :'payeeLanguage'
  }
end
build_from_hash(attributes) click to toggle source

Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself

# File lib/velopayments/models/create_payees_csv_request2.rb, line 1037
def self.build_from_hash(attributes)
  new.build_from_hash(attributes)
end
new(attributes = {}) click to toggle source

Initializes the object @param [Hash] attributes Model attributes in the form of hash

# File lib/velopayments/models/create_payees_csv_request2.rb, line 181
def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `VeloPayments::CreatePayeesCSVRequest2` 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 `VeloPayments::CreatePayeesCSVRequest2`. 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?(:'type')
    self.type = attributes[:'type']
  end

  if attributes.key?(:'remote_id')
    self.remote_id = attributes[:'remote_id']
  end

  if attributes.key?(:'email')
    self.email = attributes[:'email']
  end

  if attributes.key?(:'address_line1')
    self.address_line1 = attributes[:'address_line1']
  end

  if attributes.key?(:'address_line2')
    self.address_line2 = attributes[:'address_line2']
  end

  if attributes.key?(:'address_line3')
    self.address_line3 = attributes[:'address_line3']
  end

  if attributes.key?(:'address_line4')
    self.address_line4 = attributes[:'address_line4']
  end

  if attributes.key?(:'address_city')
    self.address_city = attributes[:'address_city']
  end

  if attributes.key?(:'address_county_or_province')
    self.address_county_or_province = attributes[:'address_county_or_province']
  end

  if attributes.key?(:'address_zip_or_postcode')
    self.address_zip_or_postcode = attributes[:'address_zip_or_postcode']
  end

  if attributes.key?(:'address_country')
    self.address_country = attributes[:'address_country']
  end

  if attributes.key?(:'individual_national_identification')
    self.individual_national_identification = attributes[:'individual_national_identification']
  end

  if attributes.key?(:'individual_date_of_birth')
    self.individual_date_of_birth = attributes[:'individual_date_of_birth']
  end

  if attributes.key?(:'individual_title')
    self.individual_title = attributes[:'individual_title']
  end

  if attributes.key?(:'individual_first_name')
    self.individual_first_name = attributes[:'individual_first_name']
  end

  if attributes.key?(:'individual_other_names')
    self.individual_other_names = attributes[:'individual_other_names']
  end

  if attributes.key?(:'individual_last_name')
    self.individual_last_name = attributes[:'individual_last_name']
  end

  if attributes.key?(:'company_name')
    self.company_name = attributes[:'company_name']
  end

  if attributes.key?(:'company_ein')
    self.company_ein = attributes[:'company_ein']
  end

  if attributes.key?(:'company_operating_name')
    self.company_operating_name = attributes[:'company_operating_name']
  end

  if attributes.key?(:'payment_channel_account_number')
    self.payment_channel_account_number = attributes[:'payment_channel_account_number']
  end

  if attributes.key?(:'payment_channel_routing_number')
    self.payment_channel_routing_number = attributes[:'payment_channel_routing_number']
  end

  if attributes.key?(:'payment_channel_account_name')
    self.payment_channel_account_name = attributes[:'payment_channel_account_name']
  end

  if attributes.key?(:'payment_channel_iban')
    self.payment_channel_iban = attributes[:'payment_channel_iban']
  end

  if attributes.key?(:'payment_channel_country_code')
    self.payment_channel_country_code = attributes[:'payment_channel_country_code']
  end

  if attributes.key?(:'payment_channel_currency')
    self.payment_channel_currency = attributes[:'payment_channel_currency']
  end

  if attributes.key?(:'challenge_description')
    self.challenge_description = attributes[:'challenge_description']
  end

  if attributes.key?(:'challenge_value')
    self.challenge_value = attributes[:'challenge_value']
  end

  if attributes.key?(:'payee_language')
    self.payee_language = attributes[:'payee_language']
  end
end
openapi_nullable() click to toggle source

List of attributes with nullable: true

# File lib/velopayments/models/create_payees_csv_request2.rb, line 174
def self.openapi_nullable
  Set.new([
  ])
end
openapi_types() click to toggle source

Attribute type mapping.

# File lib/velopayments/models/create_payees_csv_request2.rb, line 139
def self.openapi_types
  {
    :'type' => :'PayeeType',
    :'remote_id' => :'String',
    :'email' => :'String',
    :'address_line1' => :'String',
    :'address_line2' => :'String',
    :'address_line3' => :'String',
    :'address_line4' => :'String',
    :'address_city' => :'String',
    :'address_county_or_province' => :'String',
    :'address_zip_or_postcode' => :'String',
    :'address_country' => :'String',
    :'individual_national_identification' => :'String',
    :'individual_date_of_birth' => :'Date',
    :'individual_title' => :'String',
    :'individual_first_name' => :'String',
    :'individual_other_names' => :'String',
    :'individual_last_name' => :'String',
    :'company_name' => :'String',
    :'company_ein' => :'String',
    :'company_operating_name' => :'String',
    :'payment_channel_account_number' => :'String',
    :'payment_channel_routing_number' => :'String',
    :'payment_channel_account_name' => :'String',
    :'payment_channel_iban' => :'String',
    :'payment_channel_country_code' => :'String',
    :'payment_channel_currency' => :'String',
    :'challenge_description' => :'String',
    :'challenge_value' => :'String',
    :'payee_language' => :'String'
  }
end

Public Instance Methods

==(o) click to toggle source

Checks equality by comparing each attribute. @param [Object] Object to be compared

# File lib/velopayments/models/create_payees_csv_request2.rb, line 988
def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      type == o.type &&
      remote_id == o.remote_id &&
      email == o.email &&
      address_line1 == o.address_line1 &&
      address_line2 == o.address_line2 &&
      address_line3 == o.address_line3 &&
      address_line4 == o.address_line4 &&
      address_city == o.address_city &&
      address_county_or_province == o.address_county_or_province &&
      address_zip_or_postcode == o.address_zip_or_postcode &&
      address_country == o.address_country &&
      individual_national_identification == o.individual_national_identification &&
      individual_date_of_birth == o.individual_date_of_birth &&
      individual_title == o.individual_title &&
      individual_first_name == o.individual_first_name &&
      individual_other_names == o.individual_other_names &&
      individual_last_name == o.individual_last_name &&
      company_name == o.company_name &&
      company_ein == o.company_ein &&
      company_operating_name == o.company_operating_name &&
      payment_channel_account_number == o.payment_channel_account_number &&
      payment_channel_routing_number == o.payment_channel_routing_number &&
      payment_channel_account_name == o.payment_channel_account_name &&
      payment_channel_iban == o.payment_channel_iban &&
      payment_channel_country_code == o.payment_channel_country_code &&
      payment_channel_currency == o.payment_channel_currency &&
      challenge_description == o.challenge_description &&
      challenge_value == o.challenge_value &&
      payee_language == o.payee_language
end
_deserialize(type, value) click to toggle source

Deserializes the data based on type @param string type Data type @param string value Value to be deserialized @return [Object] Deserialized data

# File lib/velopayments/models/create_payees_csv_request2.rb, line 1065
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
    VeloPayments.const_get(type).build_from_hash(value)
  end
end
_to_hash(value) click to toggle source

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value @param [Object] value Any valid value @return [Hash] Returns the value in the form of hash

# File lib/velopayments/models/create_payees_csv_request2.rb, line 1134
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
address_city=(address_city) click to toggle source

Custom attribute writer method with validation @param [Object] address_city Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 711
def address_city=(address_city)
  if address_city.nil?
    fail ArgumentError, 'address_city cannot be nil'
  end

  if address_city.to_s.length > 50
    fail ArgumentError, 'invalid value for "address_city", the character length must be smaller than or equal to 50.'
  end

  if address_city.to_s.length < 2
    fail ArgumentError, 'invalid value for "address_city", the character length must be great than or equal to 2.'
  end

  @address_city = address_city
end
address_country=(address_country) click to toggle source

Custom attribute writer method checking allowed values (enum). @param [Object] address_country Object to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 761
def address_country=(address_country)
  validator = EnumAttributeValidator.new('String', ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "false", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"])
  unless validator.valid?(address_country)
    fail ArgumentError, "invalid value for \"address_country\", must be one of #{validator.allowable_values}."
  end
  @address_country = address_country
end
address_county_or_province=(address_county_or_province) click to toggle source

Custom attribute writer method with validation @param [Object] address_county_or_province Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 729
def address_county_or_province=(address_county_or_province)
  if !address_county_or_province.nil? && address_county_or_province.to_s.length > 50
    fail ArgumentError, 'invalid value for "address_county_or_province", the character length must be smaller than or equal to 50.'
  end

  if !address_county_or_province.nil? && address_county_or_province.to_s.length < 1
    fail ArgumentError, 'invalid value for "address_county_or_province", the character length must be great than or equal to 1.'
  end

  @address_county_or_province = address_county_or_province
end
address_line1=(address_line1) click to toggle source

Custom attribute writer method with validation @param [Object] address_line1 Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 651
def address_line1=(address_line1)
  if address_line1.nil?
    fail ArgumentError, 'address_line1 cannot be nil'
  end

  if address_line1.to_s.length > 100
    fail ArgumentError, 'invalid value for "address_line1", the character length must be smaller than or equal to 100.'
  end

  if address_line1.to_s.length < 2
    fail ArgumentError, 'invalid value for "address_line1", the character length must be great than or equal to 2.'
  end

  @address_line1 = address_line1
end
address_line2=(address_line2) click to toggle source

Custom attribute writer method with validation @param [Object] address_line2 Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 669
def address_line2=(address_line2)
  if !address_line2.nil? && address_line2.to_s.length > 100
    fail ArgumentError, 'invalid value for "address_line2", the character length must be smaller than or equal to 100.'
  end

  if !address_line2.nil? && address_line2.to_s.length < 0
    fail ArgumentError, 'invalid value for "address_line2", the character length must be great than or equal to 0.'
  end

  @address_line2 = address_line2
end
address_line3=(address_line3) click to toggle source

Custom attribute writer method with validation @param [Object] address_line3 Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 683
def address_line3=(address_line3)
  if !address_line3.nil? && address_line3.to_s.length > 100
    fail ArgumentError, 'invalid value for "address_line3", the character length must be smaller than or equal to 100.'
  end

  if !address_line3.nil? && address_line3.to_s.length < 0
    fail ArgumentError, 'invalid value for "address_line3", the character length must be great than or equal to 0.'
  end

  @address_line3 = address_line3
end
address_line4=(address_line4) click to toggle source

Custom attribute writer method with validation @param [Object] address_line4 Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 697
def address_line4=(address_line4)
  if !address_line4.nil? && address_line4.to_s.length > 100
    fail ArgumentError, 'invalid value for "address_line4", the character length must be smaller than or equal to 100.'
  end

  if !address_line4.nil? && address_line4.to_s.length < 0
    fail ArgumentError, 'invalid value for "address_line4", the character length must be great than or equal to 0.'
  end

  @address_line4 = address_line4
end
address_zip_or_postcode=(address_zip_or_postcode) click to toggle source

Custom attribute writer method with validation @param [Object] address_zip_or_postcode Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 743
def address_zip_or_postcode=(address_zip_or_postcode)
  if address_zip_or_postcode.nil?
    fail ArgumentError, 'address_zip_or_postcode cannot be nil'
  end

  if address_zip_or_postcode.to_s.length > 60
    fail ArgumentError, 'invalid value for "address_zip_or_postcode", the character length must be smaller than or equal to 60.'
  end

  if address_zip_or_postcode.to_s.length < 1
    fail ArgumentError, 'invalid value for "address_zip_or_postcode", the character length must be great than or equal to 1.'
  end

  @address_zip_or_postcode = address_zip_or_postcode
end
build_from_hash(attributes) click to toggle source

Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself

# File lib/velopayments/models/create_payees_csv_request2.rb, line 1044
def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.openapi_types.each_pair do |key, type|
    if 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 # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end
challenge_description=(challenge_description) click to toggle source

Custom attribute writer method with validation @param [Object] challenge_description Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 950
def challenge_description=(challenge_description)
  if !challenge_description.nil? && challenge_description.to_s.length > 255
    fail ArgumentError, 'invalid value for "challenge_description", the character length must be smaller than or equal to 255.'
  end

  if !challenge_description.nil? && challenge_description.to_s.length < 1
    fail ArgumentError, 'invalid value for "challenge_description", the character length must be great than or equal to 1.'
  end

  @challenge_description = challenge_description
end
challenge_value=(challenge_value) click to toggle source

Custom attribute writer method with validation @param [Object] challenge_value Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 964
def challenge_value=(challenge_value)
  if !challenge_value.nil? && challenge_value.to_s.length > 20
    fail ArgumentError, 'invalid value for "challenge_value", the character length must be smaller than or equal to 20.'
  end

  if !challenge_value.nil? && challenge_value.to_s.length < 3
    fail ArgumentError, 'invalid value for "challenge_value", the character length must be great than or equal to 3.'
  end

  @challenge_value = challenge_value
end
company_ein=(company_ein) click to toggle source

Custom attribute writer method with validation @param [Object] company_ein Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 855
def company_ein=(company_ein)
  if !company_ein.nil? && company_ein.to_s.length > 30
    fail ArgumentError, 'invalid value for "company_ein", the character length must be smaller than or equal to 30.'
  end

  if !company_ein.nil? && company_ein.to_s.length < 6
    fail ArgumentError, 'invalid value for "company_ein", the character length must be great than or equal to 6.'
  end

  @company_ein = company_ein
end
company_name=(company_name) click to toggle source

Custom attribute writer method with validation @param [Object] company_name Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 841
def company_name=(company_name)
  if !company_name.nil? && company_name.to_s.length > 40
    fail ArgumentError, 'invalid value for "company_name", the character length must be smaller than or equal to 40.'
  end

  if !company_name.nil? && company_name.to_s.length < 1
    fail ArgumentError, 'invalid value for "company_name", the character length must be great than or equal to 1.'
  end

  @company_name = company_name
end
company_operating_name=(company_operating_name) click to toggle source

Custom attribute writer method with validation @param [Object] company_operating_name Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 869
def company_operating_name=(company_operating_name)
  if !company_operating_name.nil? && company_operating_name.to_s.length > 100
    fail ArgumentError, 'invalid value for "company_operating_name", the character length must be smaller than or equal to 100.'
  end

  if !company_operating_name.nil? && company_operating_name.to_s.length < 1
    fail ArgumentError, 'invalid value for "company_operating_name", the character length must be great than or equal to 1.'
  end

  @company_operating_name = company_operating_name
end
email=(email) click to toggle source

Custom attribute writer method with validation @param [Object] email Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 633
def email=(email)
  if email.nil?
    fail ArgumentError, 'email cannot be nil'
  end

  if email.to_s.length > 255
    fail ArgumentError, 'invalid value for "email", the character length must be smaller than or equal to 255.'
  end

  if email.to_s.length < 3
    fail ArgumentError, 'invalid value for "email", the character length must be great than or equal to 3.'
  end

  @email = email
end
eql?(o) click to toggle source

@see the `==` method @param [Object] Object to be compared

# File lib/velopayments/models/create_payees_csv_request2.rb, line 1024
def eql?(o)
  self == o
end
hash() click to toggle source

Calculates hash code according to all attributes. @return [Integer] Hash code

# File lib/velopayments/models/create_payees_csv_request2.rb, line 1030
def hash
  [type, remote_id, email, address_line1, address_line2, address_line3, address_line4, address_city, address_county_or_province, address_zip_or_postcode, address_country, individual_national_identification, individual_date_of_birth, individual_title, individual_first_name, individual_other_names, individual_last_name, company_name, company_ein, company_operating_name, payment_channel_account_number, payment_channel_routing_number, payment_channel_account_name, payment_channel_iban, payment_channel_country_code, payment_channel_currency, challenge_description, challenge_value, payee_language].hash
end
individual_first_name=(individual_first_name) click to toggle source

Custom attribute writer method with validation @param [Object] individual_first_name Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 799
def individual_first_name=(individual_first_name)
  if !individual_first_name.nil? && individual_first_name.to_s.length > 40
    fail ArgumentError, 'invalid value for "individual_first_name", the character length must be smaller than or equal to 40.'
  end

  if !individual_first_name.nil? && individual_first_name.to_s.length < 1
    fail ArgumentError, 'invalid value for "individual_first_name", the character length must be great than or equal to 1.'
  end

  @individual_first_name = individual_first_name
end
individual_last_name=(individual_last_name) click to toggle source

Custom attribute writer method with validation @param [Object] individual_last_name Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 827
def individual_last_name=(individual_last_name)
  if !individual_last_name.nil? && individual_last_name.to_s.length > 40
    fail ArgumentError, 'invalid value for "individual_last_name", the character length must be smaller than or equal to 40.'
  end

  if !individual_last_name.nil? && individual_last_name.to_s.length < 1
    fail ArgumentError, 'invalid value for "individual_last_name", the character length must be great than or equal to 1.'
  end

  @individual_last_name = individual_last_name
end
individual_national_identification=(individual_national_identification) click to toggle source

Custom attribute writer method with validation @param [Object] individual_national_identification Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 771
def individual_national_identification=(individual_national_identification)
  if !individual_national_identification.nil? && individual_national_identification.to_s.length > 30
    fail ArgumentError, 'invalid value for "individual_national_identification", the character length must be smaller than or equal to 30.'
  end

  if !individual_national_identification.nil? && individual_national_identification.to_s.length < 6
    fail ArgumentError, 'invalid value for "individual_national_identification", the character length must be great than or equal to 6.'
  end

  @individual_national_identification = individual_national_identification
end
individual_other_names=(individual_other_names) click to toggle source

Custom attribute writer method with validation @param [Object] individual_other_names Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 813
def individual_other_names=(individual_other_names)
  if !individual_other_names.nil? && individual_other_names.to_s.length > 40
    fail ArgumentError, 'invalid value for "individual_other_names", the character length must be smaller than or equal to 40.'
  end

  if !individual_other_names.nil? && individual_other_names.to_s.length < 1
    fail ArgumentError, 'invalid value for "individual_other_names", the character length must be great than or equal to 1.'
  end

  @individual_other_names = individual_other_names
end
individual_title=(individual_title) click to toggle source

Custom attribute writer method with validation @param [Object] individual_title Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 785
def individual_title=(individual_title)
  if !individual_title.nil? && individual_title.to_s.length > 40
    fail ArgumentError, 'invalid value for "individual_title", the character length must be smaller than or equal to 40.'
  end

  if !individual_title.nil? && individual_title.to_s.length < 1
    fail ArgumentError, 'invalid value for "individual_title", the character length must be great than or equal to 1.'
  end

  @individual_title = individual_title
end
list_invalid_properties() click to toggle source

Show invalid properties with the reasons. Usually used together with valid? @return Array for valid properties with the reasons

# File lib/velopayments/models/create_payees_csv_request2.rb, line 313
def list_invalid_properties
  invalid_properties = Array.new
  if @type.nil?
    invalid_properties.push('invalid value for "type", type cannot be nil.')
  end

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

  if @remote_id.to_s.length > 100
    invalid_properties.push('invalid value for "remote_id", the character length must be smaller than or equal to 100.')
  end

  if @remote_id.to_s.length < 1
    invalid_properties.push('invalid value for "remote_id", the character length must be great than or equal to 1.')
  end

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

  if @email.to_s.length > 255
    invalid_properties.push('invalid value for "email", the character length must be smaller than or equal to 255.')
  end

  if @email.to_s.length < 3
    invalid_properties.push('invalid value for "email", the character length must be great than or equal to 3.')
  end

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

  if @address_line1.to_s.length > 100
    invalid_properties.push('invalid value for "address_line1", the character length must be smaller than or equal to 100.')
  end

  if @address_line1.to_s.length < 2
    invalid_properties.push('invalid value for "address_line1", the character length must be great than or equal to 2.')
  end

  if !@address_line2.nil? && @address_line2.to_s.length > 100
    invalid_properties.push('invalid value for "address_line2", the character length must be smaller than or equal to 100.')
  end

  if !@address_line2.nil? && @address_line2.to_s.length < 0
    invalid_properties.push('invalid value for "address_line2", the character length must be great than or equal to 0.')
  end

  if !@address_line3.nil? && @address_line3.to_s.length > 100
    invalid_properties.push('invalid value for "address_line3", the character length must be smaller than or equal to 100.')
  end

  if !@address_line3.nil? && @address_line3.to_s.length < 0
    invalid_properties.push('invalid value for "address_line3", the character length must be great than or equal to 0.')
  end

  if !@address_line4.nil? && @address_line4.to_s.length > 100
    invalid_properties.push('invalid value for "address_line4", the character length must be smaller than or equal to 100.')
  end

  if !@address_line4.nil? && @address_line4.to_s.length < 0
    invalid_properties.push('invalid value for "address_line4", the character length must be great than or equal to 0.')
  end

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

  if @address_city.to_s.length > 50
    invalid_properties.push('invalid value for "address_city", the character length must be smaller than or equal to 50.')
  end

  if @address_city.to_s.length < 2
    invalid_properties.push('invalid value for "address_city", the character length must be great than or equal to 2.')
  end

  if !@address_county_or_province.nil? && @address_county_or_province.to_s.length > 50
    invalid_properties.push('invalid value for "address_county_or_province", the character length must be smaller than or equal to 50.')
  end

  if !@address_county_or_province.nil? && @address_county_or_province.to_s.length < 1
    invalid_properties.push('invalid value for "address_county_or_province", the character length must be great than or equal to 1.')
  end

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

  if @address_zip_or_postcode.to_s.length > 60
    invalid_properties.push('invalid value for "address_zip_or_postcode", the character length must be smaller than or equal to 60.')
  end

  if @address_zip_or_postcode.to_s.length < 1
    invalid_properties.push('invalid value for "address_zip_or_postcode", the character length must be great than or equal to 1.')
  end

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

  if @address_country.to_s.length > 2
    invalid_properties.push('invalid value for "address_country", the character length must be smaller than or equal to 2.')
  end

  if @address_country.to_s.length < 2
    invalid_properties.push('invalid value for "address_country", the character length must be great than or equal to 2.')
  end

  if !@individual_national_identification.nil? && @individual_national_identification.to_s.length > 30
    invalid_properties.push('invalid value for "individual_national_identification", the character length must be smaller than or equal to 30.')
  end

  if !@individual_national_identification.nil? && @individual_national_identification.to_s.length < 6
    invalid_properties.push('invalid value for "individual_national_identification", the character length must be great than or equal to 6.')
  end

  if !@individual_title.nil? && @individual_title.to_s.length > 40
    invalid_properties.push('invalid value for "individual_title", the character length must be smaller than or equal to 40.')
  end

  if !@individual_title.nil? && @individual_title.to_s.length < 1
    invalid_properties.push('invalid value for "individual_title", the character length must be great than or equal to 1.')
  end

  if !@individual_first_name.nil? && @individual_first_name.to_s.length > 40
    invalid_properties.push('invalid value for "individual_first_name", the character length must be smaller than or equal to 40.')
  end

  if !@individual_first_name.nil? && @individual_first_name.to_s.length < 1
    invalid_properties.push('invalid value for "individual_first_name", the character length must be great than or equal to 1.')
  end

  if !@individual_other_names.nil? && @individual_other_names.to_s.length > 40
    invalid_properties.push('invalid value for "individual_other_names", the character length must be smaller than or equal to 40.')
  end

  if !@individual_other_names.nil? && @individual_other_names.to_s.length < 1
    invalid_properties.push('invalid value for "individual_other_names", the character length must be great than or equal to 1.')
  end

  if !@individual_last_name.nil? && @individual_last_name.to_s.length > 40
    invalid_properties.push('invalid value for "individual_last_name", the character length must be smaller than or equal to 40.')
  end

  if !@individual_last_name.nil? && @individual_last_name.to_s.length < 1
    invalid_properties.push('invalid value for "individual_last_name", the character length must be great than or equal to 1.')
  end

  if !@company_name.nil? && @company_name.to_s.length > 40
    invalid_properties.push('invalid value for "company_name", the character length must be smaller than or equal to 40.')
  end

  if !@company_name.nil? && @company_name.to_s.length < 1
    invalid_properties.push('invalid value for "company_name", the character length must be great than or equal to 1.')
  end

  if !@company_ein.nil? && @company_ein.to_s.length > 30
    invalid_properties.push('invalid value for "company_ein", the character length must be smaller than or equal to 30.')
  end

  if !@company_ein.nil? && @company_ein.to_s.length < 6
    invalid_properties.push('invalid value for "company_ein", the character length must be great than or equal to 6.')
  end

  if !@company_operating_name.nil? && @company_operating_name.to_s.length > 100
    invalid_properties.push('invalid value for "company_operating_name", the character length must be smaller than or equal to 100.')
  end

  if !@company_operating_name.nil? && @company_operating_name.to_s.length < 1
    invalid_properties.push('invalid value for "company_operating_name", the character length must be great than or equal to 1.')
  end

  if !@payment_channel_account_number.nil? && @payment_channel_account_number.to_s.length > 17
    invalid_properties.push('invalid value for "payment_channel_account_number", the character length must be smaller than or equal to 17.')
  end

  if !@payment_channel_account_number.nil? && @payment_channel_account_number.to_s.length < 6
    invalid_properties.push('invalid value for "payment_channel_account_number", the character length must be great than or equal to 6.')
  end

  if !@payment_channel_routing_number.nil? && @payment_channel_routing_number.to_s.length > 9
    invalid_properties.push('invalid value for "payment_channel_routing_number", the character length must be smaller than or equal to 9.')
  end

  if !@payment_channel_routing_number.nil? && @payment_channel_routing_number.to_s.length < 9
    invalid_properties.push('invalid value for "payment_channel_routing_number", the character length must be great than or equal to 9.')
  end

  if !@payment_channel_iban.nil? && @payment_channel_iban.to_s.length > 34
    invalid_properties.push('invalid value for "payment_channel_iban", the character length must be smaller than or equal to 34.')
  end

  if !@payment_channel_iban.nil? && @payment_channel_iban.to_s.length < 15
    invalid_properties.push('invalid value for "payment_channel_iban", the character length must be great than or equal to 15.')
  end

  pattern = Regexp.new(/^[A-Za-z0-9]+$/)
  if !@payment_channel_iban.nil? && @payment_channel_iban !~ pattern
    invalid_properties.push("invalid value for \"payment_channel_iban\", must conform to the pattern #{pattern}.")
  end

  if !@payment_channel_country_code.nil? && @payment_channel_country_code.to_s.length > 2
    invalid_properties.push('invalid value for "payment_channel_country_code", the character length must be smaller than or equal to 2.')
  end

  if !@payment_channel_country_code.nil? && @payment_channel_country_code.to_s.length < 2
    invalid_properties.push('invalid value for "payment_channel_country_code", the character length must be great than or equal to 2.')
  end

  if !@challenge_description.nil? && @challenge_description.to_s.length > 255
    invalid_properties.push('invalid value for "challenge_description", the character length must be smaller than or equal to 255.')
  end

  if !@challenge_description.nil? && @challenge_description.to_s.length < 1
    invalid_properties.push('invalid value for "challenge_description", the character length must be great than or equal to 1.')
  end

  if !@challenge_value.nil? && @challenge_value.to_s.length > 20
    invalid_properties.push('invalid value for "challenge_value", the character length must be smaller than or equal to 20.')
  end

  if !@challenge_value.nil? && @challenge_value.to_s.length < 3
    invalid_properties.push('invalid value for "challenge_value", the character length must be great than or equal to 3.')
  end

  invalid_properties
end
payee_language=(payee_language) click to toggle source

Custom attribute writer method checking allowed values (enum). @param [Object] payee_language Object to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 978
def payee_language=(payee_language)
  validator = EnumAttributeValidator.new('String', ["AR", "EN", "ES", "FR", "HE", "HI", "JA", "PT", "RU", "UR", "ZH"])
  unless validator.valid?(payee_language)
    fail ArgumentError, "invalid value for \"payee_language\", must be one of #{validator.allowable_values}."
  end
  @payee_language = payee_language
end
payment_channel_account_number=(payment_channel_account_number) click to toggle source

Custom attribute writer method with validation @param [Object] payment_channel_account_number Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 883
def payment_channel_account_number=(payment_channel_account_number)
  if !payment_channel_account_number.nil? && payment_channel_account_number.to_s.length > 17
    fail ArgumentError, 'invalid value for "payment_channel_account_number", the character length must be smaller than or equal to 17.'
  end

  if !payment_channel_account_number.nil? && payment_channel_account_number.to_s.length < 6
    fail ArgumentError, 'invalid value for "payment_channel_account_number", the character length must be great than or equal to 6.'
  end

  @payment_channel_account_number = payment_channel_account_number
end
payment_channel_country_code=(payment_channel_country_code) click to toggle source

Custom attribute writer method checking allowed values (enum). @param [Object] payment_channel_country_code Object to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 930
def payment_channel_country_code=(payment_channel_country_code)
  validator = EnumAttributeValidator.new('String', ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "false", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"])
  unless validator.valid?(payment_channel_country_code)
    fail ArgumentError, "invalid value for \"payment_channel_country_code\", must be one of #{validator.allowable_values}."
  end
  @payment_channel_country_code = payment_channel_country_code
end
payment_channel_currency=(payment_channel_currency) click to toggle source

Custom attribute writer method checking allowed values (enum). @param [Object] payment_channel_currency Object to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 940
def payment_channel_currency=(payment_channel_currency)
  validator = EnumAttributeValidator.new('String', ["USD", "GBP", "EUR"])
  unless validator.valid?(payment_channel_currency)
    fail ArgumentError, "invalid value for \"payment_channel_currency\", must be one of #{validator.allowable_values}."
  end
  @payment_channel_currency = payment_channel_currency
end
payment_channel_iban=(payment_channel_iban) click to toggle source

Custom attribute writer method with validation @param [Object] payment_channel_iban Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 911
def payment_channel_iban=(payment_channel_iban)
  if !payment_channel_iban.nil? && payment_channel_iban.to_s.length > 34
    fail ArgumentError, 'invalid value for "payment_channel_iban", the character length must be smaller than or equal to 34.'
  end

  if !payment_channel_iban.nil? && payment_channel_iban.to_s.length < 15
    fail ArgumentError, 'invalid value for "payment_channel_iban", the character length must be great than or equal to 15.'
  end

  pattern = Regexp.new(/^[A-Za-z0-9]+$/)
  if !payment_channel_iban.nil? && payment_channel_iban !~ pattern
    fail ArgumentError, "invalid value for \"payment_channel_iban\", must conform to the pattern #{pattern}."
  end

  @payment_channel_iban = payment_channel_iban
end
payment_channel_routing_number=(payment_channel_routing_number) click to toggle source

Custom attribute writer method with validation @param [Object] payment_channel_routing_number Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 897
def payment_channel_routing_number=(payment_channel_routing_number)
  if !payment_channel_routing_number.nil? && payment_channel_routing_number.to_s.length > 9
    fail ArgumentError, 'invalid value for "payment_channel_routing_number", the character length must be smaller than or equal to 9.'
  end

  if !payment_channel_routing_number.nil? && payment_channel_routing_number.to_s.length < 9
    fail ArgumentError, 'invalid value for "payment_channel_routing_number", the character length must be great than or equal to 9.'
  end

  @payment_channel_routing_number = payment_channel_routing_number
end
remote_id=(remote_id) click to toggle source

Custom attribute writer method with validation @param [Object] remote_id Value to be assigned

# File lib/velopayments/models/create_payees_csv_request2.rb, line 615
def remote_id=(remote_id)
  if remote_id.nil?
    fail ArgumentError, 'remote_id cannot be nil'
  end

  if remote_id.to_s.length > 100
    fail ArgumentError, 'invalid value for "remote_id", the character length must be smaller than or equal to 100.'
  end

  if remote_id.to_s.length < 1
    fail ArgumentError, 'invalid value for "remote_id", the character length must be great than or equal to 1.'
  end

  @remote_id = remote_id
end
to_body() click to toggle source

to_body is an alias to to_hash (backward compatibility) @return [Hash] Returns the object in the form of hash

# File lib/velopayments/models/create_payees_csv_request2.rb, line 1110
def to_body
  to_hash
end
to_hash() click to toggle source

Returns the object in the form of hash @return [Hash] Returns the object in the form of hash

# File lib/velopayments/models/create_payees_csv_request2.rb, line 1116
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() click to toggle source

Returns the string representation of the object @return [String] String presentation of the object

# File lib/velopayments/models/create_payees_csv_request2.rb, line 1104
def to_s
  to_hash.to_s
end
valid?() click to toggle source

Check to see if the all the properties in the model are valid @return true if the model is valid

# File lib/velopayments/models/create_payees_csv_request2.rb, line 545
def valid?
  return false if @type.nil?
  return false if @remote_id.nil?
  return false if @remote_id.to_s.length > 100
  return false if @remote_id.to_s.length < 1
  return false if @email.nil?
  return false if @email.to_s.length > 255
  return false if @email.to_s.length < 3
  return false if @address_line1.nil?
  return false if @address_line1.to_s.length > 100
  return false if @address_line1.to_s.length < 2
  return false if !@address_line2.nil? && @address_line2.to_s.length > 100
  return false if !@address_line2.nil? && @address_line2.to_s.length < 0
  return false if !@address_line3.nil? && @address_line3.to_s.length > 100
  return false if !@address_line3.nil? && @address_line3.to_s.length < 0
  return false if !@address_line4.nil? && @address_line4.to_s.length > 100
  return false if !@address_line4.nil? && @address_line4.to_s.length < 0
  return false if @address_city.nil?
  return false if @address_city.to_s.length > 50
  return false if @address_city.to_s.length < 2
  return false if !@address_county_or_province.nil? && @address_county_or_province.to_s.length > 50
  return false if !@address_county_or_province.nil? && @address_county_or_province.to_s.length < 1
  return false if @address_zip_or_postcode.nil?
  return false if @address_zip_or_postcode.to_s.length > 60
  return false if @address_zip_or_postcode.to_s.length < 1
  return false if @address_country.nil?
  address_country_validator = EnumAttributeValidator.new('String', ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "false", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"])
  return false unless address_country_validator.valid?(@address_country)
  return false if @address_country.to_s.length > 2
  return false if @address_country.to_s.length < 2
  return false if !@individual_national_identification.nil? && @individual_national_identification.to_s.length > 30
  return false if !@individual_national_identification.nil? && @individual_national_identification.to_s.length < 6
  return false if !@individual_title.nil? && @individual_title.to_s.length > 40
  return false if !@individual_title.nil? && @individual_title.to_s.length < 1
  return false if !@individual_first_name.nil? && @individual_first_name.to_s.length > 40
  return false if !@individual_first_name.nil? && @individual_first_name.to_s.length < 1
  return false if !@individual_other_names.nil? && @individual_other_names.to_s.length > 40
  return false if !@individual_other_names.nil? && @individual_other_names.to_s.length < 1
  return false if !@individual_last_name.nil? && @individual_last_name.to_s.length > 40
  return false if !@individual_last_name.nil? && @individual_last_name.to_s.length < 1
  return false if !@company_name.nil? && @company_name.to_s.length > 40
  return false if !@company_name.nil? && @company_name.to_s.length < 1
  return false if !@company_ein.nil? && @company_ein.to_s.length > 30
  return false if !@company_ein.nil? && @company_ein.to_s.length < 6
  return false if !@company_operating_name.nil? && @company_operating_name.to_s.length > 100
  return false if !@company_operating_name.nil? && @company_operating_name.to_s.length < 1
  return false if !@payment_channel_account_number.nil? && @payment_channel_account_number.to_s.length > 17
  return false if !@payment_channel_account_number.nil? && @payment_channel_account_number.to_s.length < 6
  return false if !@payment_channel_routing_number.nil? && @payment_channel_routing_number.to_s.length > 9
  return false if !@payment_channel_routing_number.nil? && @payment_channel_routing_number.to_s.length < 9
  return false if !@payment_channel_iban.nil? && @payment_channel_iban.to_s.length > 34
  return false if !@payment_channel_iban.nil? && @payment_channel_iban.to_s.length < 15
  return false if !@payment_channel_iban.nil? && @payment_channel_iban !~ Regexp.new(/^[A-Za-z0-9]+$/)
  payment_channel_country_code_validator = EnumAttributeValidator.new('String', ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "false", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"])
  return false unless payment_channel_country_code_validator.valid?(@payment_channel_country_code)
  return false if !@payment_channel_country_code.nil? && @payment_channel_country_code.to_s.length > 2
  return false if !@payment_channel_country_code.nil? && @payment_channel_country_code.to_s.length < 2
  payment_channel_currency_validator = EnumAttributeValidator.new('String', ["USD", "GBP", "EUR"])
  return false unless payment_channel_currency_validator.valid?(@payment_channel_currency)
  return false if !@challenge_description.nil? && @challenge_description.to_s.length > 255
  return false if !@challenge_description.nil? && @challenge_description.to_s.length < 1
  return false if !@challenge_value.nil? && @challenge_value.to_s.length > 20
  return false if !@challenge_value.nil? && @challenge_value.to_s.length < 3
  payee_language_validator = EnumAttributeValidator.new('String', ["AR", "EN", "ES", "FR", "HE", "HI", "JA", "PT", "RU", "UR", "ZH"])
  return false unless payee_language_validator.valid?(@payee_language)
  true
end