UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.67 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 PublishDocumentWithDescendantsRequestModel */ export interface PublishDocumentWithDescendantsRequestModel { /** * * @type {boolean} * @memberof PublishDocumentWithDescendantsRequestModel */ includeUnpublishedDescendants: boolean; /** * * @type {Array<string>} * @memberof PublishDocumentWithDescendantsRequestModel */ cultures: Array<string>; } /** * Check if a given object implements the PublishDocumentWithDescendantsRequestModel interface. */ export declare function instanceOfPublishDocumentWithDescendantsRequestModel(value: object): value is PublishDocumentWithDescendantsRequestModel; export declare function PublishDocumentWithDescendantsRequestModelFromJSON(json: any): PublishDocumentWithDescendantsRequestModel; export declare function PublishDocumentWithDescendantsRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublishDocumentWithDescendantsRequestModel; export declare function PublishDocumentWithDescendantsRequestModelToJSON(json: any): PublishDocumentWithDescendantsRequestModel; export declare function PublishDocumentWithDescendantsRequestModelToJSONTyped(value?: PublishDocumentWithDescendantsRequestModel | null, ignoreDiscriminator?: boolean): any;