UNPKG

@paciolan/cybersource-sdk

Version:
57 lines (56 loc) 1.69 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 { GetAllPlansResponsePlanInformationBillingCycles } from './get-all-plans-response-plan-information-billing-cycles'; import { Rbsv1plansPlanInformationBillingPeriod } from './rbsv1plans-plan-information-billing-period'; /** * * @export * @interface GetAllPlansResponsePlanInformation */ export interface GetAllPlansResponsePlanInformation { /** * Plan code * @type {string} * @memberof GetAllPlansResponsePlanInformation */ code?: string; /** * Plan Status: - `DRAFT` - `ACTIVE` - `INACTIVE` * @type {string} * @memberof GetAllPlansResponsePlanInformation */ status?: string; /** * Plan name * @type {string} * @memberof GetAllPlansResponsePlanInformation */ name?: string; /** * Plan description * @type {string} * @memberof GetAllPlansResponsePlanInformation */ description?: string; /** * * @type {Rbsv1plansPlanInformationBillingPeriod} * @memberof GetAllPlansResponsePlanInformation */ billingPeriod?: Rbsv1plansPlanInformationBillingPeriod; /** * * @type {GetAllPlansResponsePlanInformationBillingCycles} * @memberof GetAllPlansResponsePlanInformation */ billingCycles?: GetAllPlansResponsePlanInformationBillingCycles; }