/** * Kanga Exchange API * API documentation generated from Kanga Exchange source code. * * The version of the OpenAPI document: 1.0.0 * Contact: support@kanga.exchange * * 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 ApiV2PayPaymentGetPostRequest */ export interface ApiV2PayPaymentGetPostRequest { /** * Unique request identifier, e.g. a timestamp in milliseconds * @type {number} * @memberof ApiV2PayPaymentGetPostRequest */ nonce: number; /** * Your public key * @type {string} * @memberof ApiV2PayPaymentGetPostRequest */ appId: string; /** * KangaPay payment Id returned from /create endpoint * @type {string} * @memberof ApiV2PayPaymentGetPostRequest */ id: string; } /** * Check if a given object implements the ApiV2PayPaymentGetPostRequest interface. */ export declare function instanceOfApiV2PayPaymentGetPostRequest(value: object): boolean; export declare function ApiV2PayPaymentGetPostRequestFromJSON(json: any): ApiV2PayPaymentGetPostRequest; export declare function ApiV2PayPaymentGetPostRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2PayPaymentGetPostRequest; export declare function ApiV2PayPaymentGetPostRequestToJSON(value?: ApiV2PayPaymentGetPostRequest | null): any; //# sourceMappingURL=ApiV2PayPaymentGetPostRequest.d.ts.map