UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

33 lines (32 loc) 1.35 kB
/** * Umbraco Management API * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility * * The version of the OpenAPI document: Latest * * * 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 UnpublishDocumentRequestModel */ export interface UnpublishDocumentRequestModel { /** * * @type {Set<string>} * @memberof UnpublishDocumentRequestModel */ cultures?: Set<string> | null; } /** * Check if a given object implements the UnpublishDocumentRequestModel interface. */ export declare function instanceOfUnpublishDocumentRequestModel(value: object): value is UnpublishDocumentRequestModel; export declare function UnpublishDocumentRequestModelFromJSON(json: any): UnpublishDocumentRequestModel; export declare function UnpublishDocumentRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnpublishDocumentRequestModel; export declare function UnpublishDocumentRequestModelToJSON(json: any): UnpublishDocumentRequestModel; export declare function UnpublishDocumentRequestModelToJSONTyped(value?: UnpublishDocumentRequestModel | null, ignoreDiscriminator?: boolean): any;