/** * Tezos Rarible API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.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 FTBalance */ export interface FTBalance { /** * * @type {string} * @memberof FTBalance */ contract: string; /** * * @type {string} * @memberof FTBalance */ owner: string; /** * * @type {string} * @memberof FTBalance */ balance: string; } export declare function FTBalanceFromJSON(json: any): FTBalance; export declare function FTBalanceFromJSONTyped(json: any, ignoreDiscriminator: boolean): FTBalance; export declare function FTBalanceToJSON(value?: FTBalance | null): any;