UNPKG

@paciolan/cybersource-sdk

Version:
45 lines (44 loc) 1.46 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 { GetAllSubscriptionsResponsePlanInformationBillingCycles } from './get-all-subscriptions-response-plan-information-billing-cycles'; import { Rbsv1plansPlanInformationBillingPeriod } from './rbsv1plans-plan-information-billing-period'; /** * * @export * @interface GetAllSubscriptionsResponsePlanInformation */ export interface GetAllSubscriptionsResponsePlanInformation { /** * Plan code * @type {string} * @memberof GetAllSubscriptionsResponsePlanInformation */ code?: string; /** * Plan name * @type {string} * @memberof GetAllSubscriptionsResponsePlanInformation */ name?: string; /** * * @type {Rbsv1plansPlanInformationBillingPeriod} * @memberof GetAllSubscriptionsResponsePlanInformation */ billingPeriod?: Rbsv1plansPlanInformationBillingPeriod; /** * * @type {GetAllSubscriptionsResponsePlanInformationBillingCycles} * @memberof GetAllSubscriptionsResponsePlanInformation */ billingCycles?: GetAllSubscriptionsResponsePlanInformationBillingCycles; }