@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
49 lines (48 loc) • 1.6 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.
*/
/**
*
* @export
* @interface GetAllSubscriptionsResponseSubscriptionInformation
*/
export interface GetAllSubscriptionsResponseSubscriptionInformation {
/**
* Subscription code.
* @type {string}
* @memberof GetAllSubscriptionsResponseSubscriptionInformation
*/
code?: string;
/**
* Plan Id.
* @type {string}
* @memberof GetAllSubscriptionsResponseSubscriptionInformation
*/
planId?: string;
/**
* Subscription Name
* @type {string}
* @memberof GetAllSubscriptionsResponseSubscriptionInformation
*/
name?: string;
/**
* Start date of the Subscription Start date will be in UTC. Format: YYYY-MM-DDThh:mm:ssZ The T separates the date and the time. The Z indicates UTC. **Example** 2022-08-11T22:47:57Z equals August 11, 2022, at 22:47:57 (10:47:57 p.m.).
* @type {string}
* @memberof GetAllSubscriptionsResponseSubscriptionInformation
*/
startDate?: string;
/**
* Subscription Status: - `PENDING` - `ACTIVE` - `FAILED` - `COMPLETED` - `DELINQUENT` - `SUSPENDED` - `CANCELLED`
* @type {string}
* @memberof GetAllSubscriptionsResponseSubscriptionInformation
*/
status?: string;
}