@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
43 lines (42 loc) • 1.5 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 Rbsv1subscriptionsSubscriptionInformation
*/
export interface Rbsv1subscriptionsSubscriptionInformation {
/**
* Subscription code is an optional field, If not provided system generates and assign one
* @type {string}
* @memberof Rbsv1subscriptionsSubscriptionInformation
*/
code?: string;
/**
* Plan Id. Use Plan Id from Create Plan Service.
* @type {string}
* @memberof Rbsv1subscriptionsSubscriptionInformation
*/
planId?: string;
/**
* Subscription Name
* @type {string}
* @memberof Rbsv1subscriptionsSubscriptionInformation
*/
name: string;
/**
* Start date of the Subscription Start date must be in UTC. Format: YYYY-MM-DDThh:mm:ssZ The T separates the date and the time. The Z indicates UTC. Note: Subscription starts on the day provided in UTC. **Example** 2022-08-11T22:47:57Z equals August 11, 2022, at 22:47:57 (10:47:57 p.m.). Subscription will start on August 11,2022.
* @type {string}
* @memberof Rbsv1subscriptionsSubscriptionInformation
*/
startDate: string;
}