UNPKG

@paciolan/cybersource-sdk

Version:
57 lines (56 loc) 1.74 kB
/** * CyberSource Merged Spec * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html * * OpenAPI spec version: 0.0.1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { Rbsv1plansPlanInformationBillingCycles } from './rbsv1plans-plan-information-billing-cycles'; import { Rbsv1plansPlanInformationBillingPeriod } from './rbsv1plans-plan-information-billing-period'; /** * * @export * @interface Rbsv1plansidPlanInformation */ export interface Rbsv1plansidPlanInformation { /** * Plan code is an optional field, If not provided system generates and assign one * @type {string} * @memberof Rbsv1plansidPlanInformation */ code?: string; /** * Plan name * @type {string} * @memberof Rbsv1plansidPlanInformation */ name?: string; /** * Plan description * @type {string} * @memberof Rbsv1plansidPlanInformation */ description?: string; /** * Updating to `DRAFT` is not allowed from `ACTIVE` and `INACTIVE` status. Plan Status: - `DRAFT` - `ACTIVE` - `INACTIVE` * @type {string} * @memberof Rbsv1plansidPlanInformation */ status?: string; /** * * @type {Rbsv1plansPlanInformationBillingPeriod} * @memberof Rbsv1plansidPlanInformation */ billingPeriod?: Rbsv1plansPlanInformationBillingPeriod; /** * * @type {Rbsv1plansPlanInformationBillingCycles} * @memberof Rbsv1plansidPlanInformation */ billingCycles?: Rbsv1plansPlanInformationBillingCycles; }