/** * 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. */ import { GlobalWalletConnectionStatusEnum } from './GlobalWalletConnectionStatusEnum'; /** * * @export * @interface GlobalWalletConnection */ export interface GlobalWalletConnection { /** * * @type {string} * @memberof GlobalWalletConnection */ id: string; /** * * @type {string} * @memberof GlobalWalletConnection */ userId: string; /** * An [RFC 6454](https://www.rfc-editor.org/rfc/rfc6454) valid url. Must not include any paths. A single wildcard (*) can be used as the first subdomain. * @type {string} * @memberof GlobalWalletConnection */ appUrl: string; /** * * @type {GlobalWalletConnectionStatusEnum} * @memberof GlobalWalletConnection */ status: GlobalWalletConnectionStatusEnum; /** * If global wallet connection status is connected, then this timestamp will be present. * @type {Date} * @memberof GlobalWalletConnection */ expiresAt?: Date | null; /** * ISO 8601 timestamp of when the connection was created * @type {Date} * @memberof GlobalWalletConnection */ createdAt: Date; /** * ISO 8601 timestamp of when the connection was last updated * @type {Date} * @memberof GlobalWalletConnection */ updatedAt?: Date; } export declare function GlobalWalletConnectionFromJSON(json: any): GlobalWalletConnection; export declare function GlobalWalletConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalWalletConnection; export declare function GlobalWalletConnectionToJSON(value?: GlobalWalletConnection | null): any;