/** * 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 RegisterEmbeddedWalletSessionKeyResponse */ export interface RegisterEmbeddedWalletSessionKeyResponse { /** * Public key of the registered session key * @type {string} * @memberof RegisterEmbeddedWalletSessionKeyResponse */ publicKey: string; /** * Unix timestamp when the session key expires * @type {number} * @memberof RegisterEmbeddedWalletSessionKeyResponse */ expiresAt: number; } export declare function RegisterEmbeddedWalletSessionKeyResponseFromJSON(json: any): RegisterEmbeddedWalletSessionKeyResponse; export declare function RegisterEmbeddedWalletSessionKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterEmbeddedWalletSessionKeyResponse; export declare function RegisterEmbeddedWalletSessionKeyResponseToJSON(value?: RegisterEmbeddedWalletSessionKeyResponse | null): any;