Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.51 KB

File metadata and controls

40 lines (34 loc) · 1.51 KB

Komoju::RefundRequest

Properties

Name Type Description Notes
id String A unique 25-character alphanumeric refund request identifier.
payment String A unique 25-character alphanumeric payment identifier.
customer_name String Customer's name in half-width katakana characters.
bank_name String The name of the bank that customer would like money to be deposited to.
bank_code String 4-digit bank code. May be `null` if it's not given.
branch_name String The name of the branch.
branch_number String 3-digit branch number.
account_number String 7-digit account number.
description String Optional description or reason for this refund request. [optional]
status RefundRequestStatus
created_at Time Timestamp when the refund request was created.
platform_details PlatformDetails [optional]

Example

require 'komoju-sdk'

instance = Komoju::RefundRequest.new(
  id: refreqlv6wny1ew1a1aq4zum1,
  payment: pay3fj6nnhvws08idzacf6et8,
  customer_name: サイトウ マサヒロ,
  bank_name: サンプル銀行,
  bank_code: 0900,
  branch_name: 本店,
  branch_number: 100,
  account_number: 1234567,
  description: null,
  status: null,
  created_at: null,
  platform_details: null
)