UNPKG

@paciolan/cybersource-sdk

Version:
74 lines (73 loc) 2.56 kB
/** * 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 { KmsV2KeysAsymPost201ResponseErrorInformation } from './kms-v2-keys-asym-post201-response-error-information'; /** * key information * @export * @interface KmsV2KeysSymPost201ResponseKeyInformation */ export interface KmsV2KeysSymPost201ResponseKeyInformation { /** * Merchant Id * @type {string} * @memberof KmsV2KeysSymPost201ResponseKeyInformation */ organizationId?: string; /** * Payworks MerchantId for given organizationId. * @type {string} * @memberof KmsV2KeysSymPost201ResponseKeyInformation */ externalOrganizationId?: string; /** * Reference number is a unique identifier provided by the client along with the organization Id. This is an optional field provided solely for the client's convenience. If client specifies value for this field in the request, it is expected to be available in the response. * @type {string} * @memberof KmsV2KeysSymPost201ResponseKeyInformation */ referenceNumber?: string; /** * Key Serial Number * @type {string} * @memberof KmsV2KeysSymPost201ResponseKeyInformation */ keyId?: string; /** * value of the key * @type {string} * @memberof KmsV2KeysSymPost201ResponseKeyInformation */ key?: string; /** * The status of the key. Possible values: - FAILED - ACTIVE * @type {string} * @memberof KmsV2KeysSymPost201ResponseKeyInformation */ status?: string; /** * The expiration time in UTC. `Format: YYYY-MM-DDThh:mm:ssZ` Example 2016-08-11T22:47:57Z equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The T separates the date and the time. The Z indicates UTC. * @type {string} * @memberof KmsV2KeysSymPost201ResponseKeyInformation */ expirationDate?: string; /** * message in case of failed key * @type {string} * @memberof KmsV2KeysSymPost201ResponseKeyInformation */ message?: string; /** * * @type {KmsV2KeysAsymPost201ResponseErrorInformation} * @memberof KmsV2KeysSymPost201ResponseKeyInformation */ errorInformation?: KmsV2KeysAsymPost201ResponseErrorInformation; }