SubscriptionSkipHistory
契約のスキップ履歴
type SubscriptionSkipHistory {
id: Int!
createdAt: DateTime!
canceledAt: DateTime
updatedAt: DateTime!
skipCount: Int!
}
Fields
SubscriptionSkipHistory.id
● Int!
non-null scalar
スキップ履歴の ID
- 例:
12345
SubscriptionSkipHistory.createdAt
● DateTime!
non-null scalar
スキップ日時
- 例:
"2025-01-21T14:00:00+09:00"
- 備考: JST形式で表記
SubscriptionSkipHistory.canceledAt
● DateTime
scalar
スキップキャンセル日時
- 例:
"2025-01-21T14:00:00+09:00"
- 備考:
JST形式で表記
null の場合、スキップはまだキャンセルされていない
SubscriptionSkipHistory.updatedAt
● DateTime!
non-null scalar
更新日時
- 例:
2025-01-21T14:00:00+09:00"
- 備考: JST形式で表記
SubscriptionSkipHistory.skipCount
● Int!
non-null scalar
スキップ回数
- 例:
2
Example
{
"id": 12345,
"createdAt": "2025-01-21T14:00:00+09:00",
"canceledAt": "2025-01-21T14:00:00+09:00",
"skipCount": 2
}
Member Of
SubscriptionContract
object