@getopenpay/client
Version:
OpenPay API TypeScript SDK
45 lines (44 loc) • 1.32 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface VerificationResults
*/
export interface VerificationResults {
/**
*
* @type {string}
* @memberof VerificationResults
*/
avsResult?: string | null;
/**
*
* @type {string}
* @memberof VerificationResults
*/
cavvResult?: string | null;
/**
*
* @type {string}
* @memberof VerificationResults
*/
cvvResult?: string | null;
}
/**
* Check if a given object implements the VerificationResults interface.
*/
export declare function instanceOfVerificationResults(value: object): value is VerificationResults;
export declare function VerificationResultsFromJSON(json: any): VerificationResults;
export declare function VerificationResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerificationResults;
export declare function VerificationResultsToJSON(json: any): VerificationResults;
export declare function VerificationResultsToJSONTyped(value?: VerificationResults | null, ignoreDiscriminator?: boolean): any;