/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.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 XrpSignTransactionRequestPayment */ export interface XrpSignTransactionRequestPayment { /** * * @type {string} * @memberof XrpSignTransactionRequestPayment */ destinationTag: string; /** * * @type {string} * @memberof XrpSignTransactionRequestPayment */ destination: string; /** * * @type {string} * @memberof XrpSignTransactionRequestPayment */ amount: string; } /** * Check if a given object implements the XrpSignTransactionRequestPayment interface. */ export declare function instanceOfXrpSignTransactionRequestPayment(value: object): boolean; export declare function XrpSignTransactionRequestPaymentFromJSON(json: any): XrpSignTransactionRequestPayment; export declare function XrpSignTransactionRequestPaymentFromJSONTyped(json: any, ignoreDiscriminator: boolean): XrpSignTransactionRequestPayment; export declare function XrpSignTransactionRequestPaymentToJSON(value?: XrpSignTransactionRequestPayment | null): any;