/** * 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 Balance */ export interface Balance { /** * * @type {number} * @memberof Balance */ id?: number; /** * * @type {string} * @memberof Balance */ createdAt?: string; /** * * @type {string} * @memberof Balance */ identifier: string; /** * * @type {string} * @memberof Balance */ type: string; /** * * @type {string} * @memberof Balance */ networkId: string; /** * * @type {string} * @memberof Balance */ caip: string; /** * * @type {string} * @memberof Balance */ icon: string; /** * * @type {string} * @memberof Balance */ symbol: string; /** * * @type {string} * @memberof Balance */ balance: string; /** * * @type {string} * @memberof Balance */ pubkey: string; /** * * @type {string} * @memberof Balance */ context: string; /** * * @type {string} * @memberof Balance */ ticker: string; /** * * @type {number} * @memberof Balance */ priceUsd: number; /** * * @type {string} * @memberof Balance */ valueUsd: string; } /** * Check if a given object implements the Balance interface. */ export declare function instanceOfBalance(value: object): boolean; export declare function BalanceFromJSON(json: any): Balance; export declare function BalanceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Balance; export declare function BalanceToJSON(value?: Balance | null): any;