/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The DELTA returned by submitGuestDocument - the FE applies it to * its state and never invents a participant or activity entry of its * own. * @export * @interface GuestDocumentActionSchema */ export interface GuestDocumentActionSchema { /** * redirect_required is reserved for the provider signature arc - v1 never returns it. * @type {GuestDocumentActionSchemaOutcomeEnum} * @memberof GuestDocumentActionSchema */ outcome?: GuestDocumentActionSchemaOutcomeEnum; /** * * @type {GuestDocumentActionSchemaStatusEnum} * @memberof GuestDocumentActionSchema */ status?: GuestDocumentActionSchemaStatusEnum; /** * The updated viewer participant (sanitized). * @type {object} * @memberof GuestDocumentActionSchema */ participant?: object; /** * The sanitized entries this action appended (empty on an idempotent VIEW repeat). * @type {Array} * @memberof GuestDocumentActionSchema */ activity?: Array; } /** * @export */ export declare const GuestDocumentActionSchemaOutcomeEnum: { readonly Applied: "applied"; readonly RedirectRequired: "redirect_required"; }; export type GuestDocumentActionSchemaOutcomeEnum = typeof GuestDocumentActionSchemaOutcomeEnum[keyof typeof GuestDocumentActionSchemaOutcomeEnum]; /** * @export */ export declare const GuestDocumentActionSchemaStatusEnum: { readonly Pending: "pending"; readonly Completed: "completed"; readonly Declined: "declined"; readonly Expired: "expired"; readonly Withdrawn: "withdrawn"; }; export type GuestDocumentActionSchemaStatusEnum = typeof GuestDocumentActionSchemaStatusEnum[keyof typeof GuestDocumentActionSchemaStatusEnum]; /** * Check if a given object implements the GuestDocumentActionSchema interface. */ export declare function instanceOfGuestDocumentActionSchema(value: object): value is GuestDocumentActionSchema; export declare function GuestDocumentActionSchemaFromJSON(json: any): GuestDocumentActionSchema; export declare function GuestDocumentActionSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestDocumentActionSchema; export declare function GuestDocumentActionSchemaToJSON(json: any): GuestDocumentActionSchema; export declare function GuestDocumentActionSchemaToJSONTyped(value?: GuestDocumentActionSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GuestDocumentActionSchema.d.ts.map