@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
57 lines (56 loc) • 1.64 kB
TypeScript
/**
* 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 Rbsv1plansPlanInformation
*/
export interface Rbsv1plansPlanInformation {
/**
* Plan code is an optional field, If not provided system generates and assign one
* @type {string}
* @memberof Rbsv1plansPlanInformation
*/
code?: string;
/**
* Plan name
* @type {string}
* @memberof Rbsv1plansPlanInformation
*/
name: string;
/**
* Plan description
* @type {string}
* @memberof Rbsv1plansPlanInformation
*/
description?: string;
/**
* Plan Status: - `DRAFT` - `ACTIVE` (default)
* @type {string}
* @memberof Rbsv1plansPlanInformation
*/
status?: string;
/**
*
* @type {Rbsv1plansPlanInformationBillingPeriod}
* @memberof Rbsv1plansPlanInformation
*/
billingPeriod: Rbsv1plansPlanInformationBillingPeriod;
/**
*
* @type {Rbsv1plansPlanInformationBillingCycles}
* @memberof Rbsv1plansPlanInformation
*/
billingCycles?: Rbsv1plansPlanInformationBillingCycles;
}