/** * 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 GlobalWalletConnectionCreateRequest */ export interface GlobalWalletConnectionCreateRequest { /** * ISO 8601 timestamp of when the connection should expire * @type {Date} * @memberof GlobalWalletConnectionCreateRequest */ expiresAt: Date; } export declare function GlobalWalletConnectionCreateRequestFromJSON(json: any): GlobalWalletConnectionCreateRequest; export declare function GlobalWalletConnectionCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalWalletConnectionCreateRequest; export declare function GlobalWalletConnectionCreateRequestToJSON(value?: GlobalWalletConnectionCreateRequest | null): any;