/** * 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 InlineObject2 */ export interface InlineObject2 { /** * * @type {string} * @memberof InlineObject2 */ network: InlineObject2NetworkEnum; /** * User Authorization serialized via `Authorization.toString()`. * @type {string} * @memberof InlineObject2 */ authorization: string; /** * Optional priority bid (credits, not microcredits). * @type {number} * @memberof InlineObject2 */ priorityFee?: number; } /** * @export * @enum {string} */ export declare enum InlineObject2NetworkEnum { Testnet = "testnet", Mainnet = "mainnet" } export declare function InlineObject2FromJSON(json: any): InlineObject2; export declare function InlineObject2FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineObject2; export declare function InlineObject2ToJSON(value?: InlineObject2 | null): any;