class Veritrans::Tercerog::Mdk::VirtualaccDepositEntryRequestDto

決済サービスタイプ:銀行振込決済、コマンド名:入金の要求Dtoクラス

@author

VeriTrans Inc.

Constants

SERVICE_COMMAND

決済サービスコマンド 半角英数字 必須項目、固定値

SERVICE_TYPE

決済サービスタイプ 半角英数字 必須項目、固定値

Public Class Methods

new() click to toggle source

コンストラクタ

# File tgMdk/lib/tg_mdk/mdk_dto/virtualacc_deposit_entry_request_dto.rb, line 17
def initialize
  @service_type = SERVICE_TYPE
  @service_command = SERVICE_COMMAND
end

Public Instance Methods

amount() click to toggle source

金額を取得する

@return

金額

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

金額を設定する

入金金額を指定する

  • 1 以上かつ 999999999999(12桁) 以下

@param

amount 金額

# File tgMdk/lib/tg_mdk/mdk_dto/virtualacc_deposit_entry_request_dto.rb, line 126
def amount=(amount)
  @amount = amount
end
deposit_date() click to toggle source

入金日を取得する

@return

入金日

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

入金日を設定する

YYYYMMDD

@param

#deposit_date 入金日

# File tgMdk/lib/tg_mdk/mdk_dto/virtualacc_deposit_entry_request_dto.rb, line 185
def deposit_date=(deposit_date)
  @deposit_date = deposit_date
end
order_id() click to toggle source

取引IDを取得する

@return

取引ID

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

取引IDを設定する

入金する対象の取引IDを指定する

@param

#order_id 取引ID

# File tgMdk/lib/tg_mdk/mdk_dto/virtualacc_deposit_entry_request_dto.rb, line 107
def order_id=(order_id)
  @order_id = order_id
end
registration_method() click to toggle source

登録方法を取得する

@return

登録方法

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

登録方法を設定する

  • 0 : 手動

  • 1 : 自動

※ 未指定の場合は、0 : 手動

@param

#registration_method 登録方法

# File tgMdk/lib/tg_mdk/mdk_dto/virtualacc_deposit_entry_request_dto.rb, line 167
def registration_method=(registration_method)
  @registration_method = registration_method
end
service_command() click to toggle source

決済サービスコマンドを取得する

@return

決済サービスコマンド

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

サービスオプションタイプを取得する

@return

サービスオプションタイプ

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

サービスオプションタイプを設定する

  • “resona”:りそな

@param

#service_option_type サービスオプションタイプ

# File tgMdk/lib/tg_mdk/mdk_dto/virtualacc_deposit_entry_request_dto.rb, line 71
def service_option_type=(service_option_type)
  @service_option_type = service_option_type
end
service_type() click to toggle source

決済サービスタイプを取得する

@return

決済サービスタイプ

# File tgMdk/lib/tg_mdk/mdk_dto/virtualacc_deposit_entry_request_dto.rb, line 42
def service_type
  @service_type = nil unless instance_variable_defined?(:@service_type)
  @service_type
end
transfer_name() click to toggle source

振込人名を取得する

@return

振込人名

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

振込人名を設定する

振込番号と登録時振込人名を結合したものを指定する

@param

#transfer_name 振込人名

# File tgMdk/lib/tg_mdk/mdk_dto/virtualacc_deposit_entry_request_dto.rb, line 89
def transfer_name=(transfer_name)
  @transfer_name = transfer_name
end
with_reconcile() click to toggle source

消込フラグを取得する

@return

消込フラグ

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

消込フラグを設定する

  • 0 : 消込しない

  • 1 : 消込(強制)

  • 2 : 消込(自動)

※ 未指定の場合は、0 : 消込しない

@param

#with_reconcile 消込フラグ

# File tgMdk/lib/tg_mdk/mdk_dto/virtualacc_deposit_entry_request_dto.rb, line 147
def with_reconcile=(with_reconcile)
  @with_reconcile = with_reconcile
end