/** * 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 Path */ export interface Path { /** * * @type {number} * @memberof Path */ id?: number; /** * * @type {string} * @memberof Path */ note: string; /** * * @type {string} * @memberof Path */ script_type?: string; /** * * @type {Array} * @memberof Path */ available_scripts_types?: Array; /** * * @type {string} * @memberof Path */ type: string; /** * * @type {string} * @memberof Path */ path: string; /** * * @type {string} * @memberof Path */ addressNList?: string; /** * * @type {string} * @memberof Path */ addressNListMaster?: string; /** * * @type {Array} * @memberof Path */ networks: Array; } /** * Check if a given object implements the Path interface. */ export declare function instanceOfPath(value: object): boolean; export declare function PathFromJSON(json: any): Path; export declare function PathFromJSONTyped(json: any, ignoreDiscriminator: boolean): Path; export declare function PathToJSON(value?: Path | null): any;