/** * 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. */ /** * Encrypted key share payload using hybrid RSA-AES encryption * @export * @interface DelegatedShareDeliveryRequestEncryptedDelegatedShare */ export interface DelegatedShareDeliveryRequestEncryptedDelegatedShare { /** * * @type {string} * @memberof DelegatedShareDeliveryRequestEncryptedDelegatedShare */ alg: string; /** * * @type {string} * @memberof DelegatedShareDeliveryRequestEncryptedDelegatedShare */ iv: string; /** * A string with a max length of 4096 characters * @type {string} * @memberof DelegatedShareDeliveryRequestEncryptedDelegatedShare */ ct: string; /** * * @type {string} * @memberof DelegatedShareDeliveryRequestEncryptedDelegatedShare */ tag: string; /** * A string with a max length of 4096 characters * @type {string} * @memberof DelegatedShareDeliveryRequestEncryptedDelegatedShare */ ek: string; /** * * @type {string} * @memberof DelegatedShareDeliveryRequestEncryptedDelegatedShare */ kid?: string; } export declare function DelegatedShareDeliveryRequestEncryptedDelegatedShareFromJSON(json: any): DelegatedShareDeliveryRequestEncryptedDelegatedShare; export declare function DelegatedShareDeliveryRequestEncryptedDelegatedShareFromJSONTyped(json: any, ignoreDiscriminator: boolean): DelegatedShareDeliveryRequestEncryptedDelegatedShare; export declare function DelegatedShareDeliveryRequestEncryptedDelegatedShareToJSON(value?: DelegatedShareDeliveryRequestEncryptedDelegatedShare | null): any;