/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 InlineObject5 */ export interface InlineObject5 { /** * * @type {string} * @memberof InlineObject5 */ network: InlineObject5NetworkEnum; /** * * @type {string} * @memberof InlineObject5 */ uuid: string; } /** * @export * @enum {string} */ export declare enum InlineObject5NetworkEnum { Testnet = "testnet", Mainnet = "mainnet" } export declare function InlineObject5FromJSON(json: any): InlineObject5; export declare function InlineObject5FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineObject5; export declare function InlineObject5ToJSON(value?: InlineObject5 | null): any;