class CybridApiBank::TransferDestinationAccountBankModel

def bank_guid=(bank_guid)

Parameters:
  • bank_guid (Object) -- Value to be assigned
def bank_guid=(bank_guid)
  if !bank_guid.nil? && bank_guid.to_s.length > 32
    fail ArgumentError, 'invalid value for "bank_guid", the character length must be smaller than or equal to 32.'
  end
  if !bank_guid.nil? && bank_guid.to_s.length < 32
    fail ArgumentError, 'invalid value for "bank_guid", the character length must be great than or equal to 32.'
  end
  @bank_guid = bank_guid
end