umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
39 lines (38 loc) • 1.5 kB
TypeScript
/**
* 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 PublishWithDescendantsResultModel
*/
export interface PublishWithDescendantsResultModel {
/**
*
* @type {string}
* @memberof PublishWithDescendantsResultModel
*/
taskId: string;
/**
*
* @type {boolean}
* @memberof PublishWithDescendantsResultModel
*/
isComplete: boolean;
}
/**
* Check if a given object implements the PublishWithDescendantsResultModel interface.
*/
export declare function instanceOfPublishWithDescendantsResultModel(value: object): value is PublishWithDescendantsResultModel;
export declare function PublishWithDescendantsResultModelFromJSON(json: any): PublishWithDescendantsResultModel;
export declare function PublishWithDescendantsResultModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublishWithDescendantsResultModel;
export declare function PublishWithDescendantsResultModelToJSON(json: any): PublishWithDescendantsResultModel;
export declare function PublishWithDescendantsResultModelToJSONTyped(value?: PublishWithDescendantsResultModel | null, ignoreDiscriminator?: boolean): any;