/** * 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 RegisterSessionKeyRequest */ export interface RegisterSessionKeyRequest { /** * * @type {string} * @memberof RegisterSessionKeyRequest */ publicKey: string; /** * * @type {string} * @memberof RegisterSessionKeyRequest */ prevSessionKeySignature?: string; /** * * @type {string} * @memberof RegisterSessionKeyRequest */ walletId?: string; } export declare function RegisterSessionKeyRequestFromJSON(json: any): RegisterSessionKeyRequest; export declare function RegisterSessionKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterSessionKeyRequest; export declare function RegisterSessionKeyRequestToJSON(value?: RegisterSessionKeyRequest | null): any;