OBJECT

CardTransaction

link GraphQL Schema definition

  • type CardTransaction {
  • # 取引金額
  • amount: BigDecimal!
  • # トランザクションが発生したカード
  • card: Card!
  • # 取引確定日時
  • confirmedAt: ISO8601DateTime
  • createdAt: ISO8601DateTime!
  • # デポジット残高
  • depositedAmount: BigDecimal!
  • # 為替交換手数料込みの為替レート
  • feeIncludedConversionRate: BigDecimal
  • id: ID!
  • # マークアップフィー
  • markupFee: BigDecimal!
  • # メモ
  • memo: String
  • # 利用加盟店名
  • merchantName: String!
  • # 利用加盟店名(カナ)
  • merchantNameKana: String
  • # 利用加盟店名(漢字)
  • merchantNameKanji: String
  • # ポイント還元額
  • pointAmount: Int!
  • # ポイント還元率
  • pointRate: BigDecimal!
  • # 登録番号
  • registrationNumber: String
  • # 現地通貨取引金額
  • sourceAmount: BigDecimal
  • # JPY, USDなど取引通貨
  • sourceCurrencyCode: String!
  • # authorized: カード支払の承認, confirmed: カード支払の確定, カード支払(仮・確定ともに)の取消
  • status: CardTransactionStatus!
  • # トランザクションスイートのID
  • suiteId: String!
  • # 明細添付ファイル
  • transactionAttachment: TransactionAttachment
  • # 取引日時
  • transactionTime: ISO8601DateTime!
  • updatedAt: ISO8601DateTime!
  • }