/** * 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. */ import type { StdTxTransferValue } from './StdTxTransferValue'; /** * * @export * @interface StdTxTransfer */ export interface StdTxTransfer { /** * * @type {StdTxTransferValue} * @memberof StdTxTransfer */ value: StdTxTransferValue; /** * * @type {string} * @memberof StdTxTransfer */ type: StdTxTransferTypeEnum; } /** * @export */ export declare const StdTxTransferTypeEnum: { readonly thorchain_MsgSend: "thorchain/MsgSend"; }; export type StdTxTransferTypeEnum = typeof StdTxTransferTypeEnum[keyof typeof StdTxTransferTypeEnum]; /** * Check if a given object implements the StdTxTransfer interface. */ export declare function instanceOfStdTxTransfer(value: object): boolean; export declare function StdTxTransferFromJSON(json: any): StdTxTransfer; export declare function StdTxTransferFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxTransfer; export declare function StdTxTransferToJSON(value?: StdTxTransfer | null): any;