@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
45 lines (44 loc) • 1.44 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.
*/
/**
* key information
* @export
* @interface Kmsv2keyssymverifiKeyInformation
*/
export interface Kmsv2keyssymverifiKeyInformation {
/**
* Merchant Id
* @type {string}
* @memberof Kmsv2keyssymverifiKeyInformation
*/
organizationId: 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 Kmsv2keyssymverifiKeyInformation
*/
referenceNumber?: string;
/**
* Algorithm for message signature authentication
* @type {string}
* @memberof Kmsv2keyssymverifiKeyInformation
*/
digestAlgorithm?: Kmsv2keyssymverifiKeyInformationDigestAlgorithmEnum;
}
/**
* @export
* @enum {string}
*/
export declare enum Kmsv2keyssymverifiKeyInformationDigestAlgorithmEnum {
HMACSHA1 = "HMACSHA1",
HMACSHA2 = "HMACSHA2"
}