/** * 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 PairingInfo */ export interface PairingInfo { /** * * @type {number} * @memberof PairingInfo */ addedOn?: number; /** * * @type {string} * @memberof PairingInfo */ imageUrl: string; /** * * @type {string} * @memberof PairingInfo */ url: string; /** * * @type {string} * @memberof PairingInfo */ name: string; } /** * Check if a given object implements the PairingInfo interface. */ export declare function instanceOfPairingInfo(value: object): boolean; export declare function PairingInfoFromJSON(json: any): PairingInfo; export declare function PairingInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PairingInfo; export declare function PairingInfoToJSON(value?: PairingInfo | null): any;