ENUM

RenewalPolicy

RenewalPolicy defines whether the charge model will renew or not.

link GraphQL Schema definition

1enum RenewalPolicy {
2
3# Will not renew automatically.
4NO_RENEW
5
6# Will renew automatically.
7AUTO_RENEW
8
9# Unknown renewal policy.
10UNKNOWN
11}