@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
73 lines (72 loc) • 1.97 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.
*/
/**
* Egress Asymmetric Key Information Request
* @export
* @interface Kmsegressv2keysasymKeyInformation
*/
export interface Kmsegressv2keysasymKeyInformation {
/**
* Provider name
* @type {string}
* @memberof Kmsegressv2keysasymKeyInformation
*/
provider?: string;
/**
* Tenant name
* @type {string}
* @memberof Kmsegressv2keysasymKeyInformation
*/
tenant?: string;
/**
* Type of the key
* @type {string}
* @memberof Kmsegressv2keysasymKeyInformation
*/
keyType?: string;
/**
* Organization Id
* @type {string}
* @memberof Kmsegressv2keysasymKeyInformation
*/
organizationId?: string;
/**
* Public certificate with only base64 encoded payload and not the header (BEGIN CERTIFICATE) and footer (END CERTIFICATE)
* @type {string}
* @memberof Kmsegressv2keysasymKeyInformation
*/
pub?: string;
/**
* Key Serial Number
* @type {string}
* @memberof Kmsegressv2keysasymKeyInformation
*/
keyId?: string;
/**
* Private certificate with only base64 encoded payload and not header (BEGIN CERTIFICATE) and footer (END CERTIFICATE)
* @type {string}
* @memberof Kmsegressv2keysasymKeyInformation
*/
pvt?: string;
/**
* The status of the key
* @type {string}
* @memberof Kmsegressv2keysasymKeyInformation
*/
status?: string;
/**
* Key expiry duration in days
* @type {string}
* @memberof Kmsegressv2keysasymKeyInformation
*/
expiryDuration?: string;
}