CustomerSubscriptionContractRank
顧客向け契約情報取得用Rank
type CustomerSubscriptionContractRank {
name: String!
discountPercentage: Int!
}
Fields
CustomerSubscriptionContractRank.name
● String!
non-null scalar
ランク名
- 説明: 顧客が属するランクの名前
- データ例:
"rank1"
CustomerSubscriptionContractRank.discountPercentage
● Int!
non-null scalar
ランク割引率
- 説明: ランクに応じた割引率(%)
- データ例:
1
Example
{
"name": "rank1",
"discountPercentage": 1
}