@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
55 lines (54 loc) • 1.7 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 PtsV2CreateBillingAgreementPost201ResponseAgreementInformation
*/
export interface PtsV2CreateBillingAgreementPost201ResponseAgreementInformation {
/**
* Identifier for the mandate.
* @type {string}
* @memberof PtsV2CreateBillingAgreementPost201ResponseAgreementInformation
*/
id?: string;
/**
* Date the mandate has been signed. Format YYYYMMdd
* @type {string}
* @memberof PtsV2CreateBillingAgreementPost201ResponseAgreementInformation
*/
dateSigned?: string;
/**
* Date the mandate has been created. Format YYYYMMdd
* @type {string}
* @memberof PtsV2CreateBillingAgreementPost201ResponseAgreementInformation
*/
dateCreated?: string;
/**
* Base64 encoded html string
* @type {string}
* @memberof PtsV2CreateBillingAgreementPost201ResponseAgreementInformation
*/
encodedHtml?: string;
/**
* Base64 encoded popup html string
* @type {string}
* @memberof PtsV2CreateBillingAgreementPost201ResponseAgreementInformation
*/
encodedHtmlPopup?: string;
/**
* URL for redirecting the customer for creating the mandate.
* @type {string}
* @memberof PtsV2CreateBillingAgreementPost201ResponseAgreementInformation
*/
url?: string;
}