/** * 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 UtxoSignTransactionRequest */ export interface UtxoSignTransactionRequest { /** * * @type {string} * @memberof UtxoSignTransactionRequest */ opReturnData?: string; /** * * @type {string} * @memberof UtxoSignTransactionRequest */ vaultAddress?: string; /** * * @type {any} * @memberof UtxoSignTransactionRequest */ outputs: any | null; /** * * @type {any} * @memberof UtxoSignTransactionRequest */ inputs: any | null; /** * * @type {string} * @memberof UtxoSignTransactionRequest */ coin: string; } /** * Check if a given object implements the UtxoSignTransactionRequest interface. */ export declare function instanceOfUtxoSignTransactionRequest(value: object): boolean; export declare function UtxoSignTransactionRequestFromJSON(json: any): UtxoSignTransactionRequest; export declare function UtxoSignTransactionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UtxoSignTransactionRequest; export declare function UtxoSignTransactionRequestToJSON(value?: UtxoSignTransactionRequest | null): any;