/** * 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 DelegatedShareDeliveryResponse */ export interface DelegatedShareDeliveryResponse { /** * Unique identifier for this delivery, used for tracking and correlation * @type {string} * @memberof DelegatedShareDeliveryResponse */ delegatedShareDeliveryId: string; /** * Current status of the delegated share delivery * @type {string} * @memberof DelegatedShareDeliveryResponse */ status: DelegatedShareDeliveryResponseStatusEnum; /** * Human-readable status message * @type {string} * @memberof DelegatedShareDeliveryResponse */ message?: string; } /** * @export * @enum {string} */ export declare enum DelegatedShareDeliveryResponseStatusEnum { Accepted = "accepted", Queued = "queued" } export declare function DelegatedShareDeliveryResponseFromJSON(json: any): DelegatedShareDeliveryResponse; export declare function DelegatedShareDeliveryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DelegatedShareDeliveryResponse; export declare function DelegatedShareDeliveryResponseToJSON(value?: DelegatedShareDeliveryResponse | null): any;