Method: ShellCardManagementApIs::PINDeliverTo#to_s

Defined in:
lib/shell_card_management_ap_is/models/pin_deliver_to.rb

#to_sObject

Provides a human-readable string representation of the object.



162
163
164
165
166
167
168
169
# File 'lib/shell_card_management_ap_is/models/pin_deliver_to.rb', line 162

def to_s
  class_name = self.class.name.split('::').last
  "<#{class_name} contact_name: #{@contact_name}, contact_title: #{@contact_title},"\
  " company_name: #{@company_name}, address_line: #{@address_line}, zip_code: #{@zip_code},"\
  " city: #{@city}, region_id: #{@region_id}, country_id: #{@country_id}, phone_number:"\
  " #{@phone_number}, email_address: #{@email_address}, save_pin_reminder:"\
  " #{@save_pin_reminder}>"
end