class Veritrans::Tercerog::Mdk::AccountInfo

連絡先情報のクラス

@author

VeriTrans Inc.

Public Instance Methods

account_info_id() click to toggle source

連絡先IDを取得する

@return

連絡先ID

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 17
def account_info_id
  @account_info_id = nil unless instance_variable_defined?(:@account_info_id)
  @account_info_id
end
account_info_id=(account_info_id) click to toggle source

連絡先IDを設定する

@param

#account_info_id 連絡先ID

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 26
def account_info_id=(account_info_id)
  @account_info_id = account_info_id
end
account_type() click to toggle source

連絡先区分を取得する

@return

連絡先区分

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 34
def account_type
  @account_type = nil unless instance_variable_defined?(:@account_type)
  @account_type
end
account_type=(account_type) click to toggle source

連絡先区分を設定する

@param

#account_type 連絡先区分

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 43
def account_type=(account_type)
  @account_type = account_type
end
address() click to toggle source

住所を取得する

@return

住所

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 102
def address
  @address = nil unless instance_variable_defined?(:@address)
  @address
end
address=(address) click to toggle source

住所を設定する

@param

address 住所

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 111
def address=(address)
  @address = address
end
default_account() click to toggle source

標準連絡先フラグを取得する

@return

標準連絡先フラグ

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 51
def default_account
  @default_account = nil unless instance_variable_defined?(:@default_account)
  @default_account
end
default_account=(default_account) click to toggle source

標準連絡先フラグを設定する

@param

#default_account 標準連絡先フラグ

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 60
def default_account=(default_account)
  @default_account = default_account
end
recipient() click to toggle source

宛名を取得する

@return

宛名

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 68
def recipient
  @recipient = nil unless instance_variable_defined?(:@recipient)
  @recipient
end
recipient=(recipient) click to toggle source

宛名を設定する

@param

recipient 宛名

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 77
def recipient=(recipient)
  @recipient = recipient
end
tel() click to toggle source

電話番号を取得する

@return

電話番号

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 119
def tel
  @tel = nil unless instance_variable_defined?(:@tel)
  @tel
end
tel=(tel) click to toggle source

電話番号を設定する

@param

tel 電話番号

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 128
def tel=(tel)
  @tel = tel
end
zip() click to toggle source

郵便番号を取得する

@return

郵便番号

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 85
def zip
  @zip = nil unless instance_variable_defined?(:@zip)
  @zip
end
zip=(zip) click to toggle source

郵便番号を設定する

@param

zip 郵便番号

# File tgMdk/lib/tg_mdk/mdk_dto/account_info.rb, line 94
def zip=(zip)
  @zip = zip
end