umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
51 lines (50 loc) • 1.85 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 DocumentConfigurationResponseModel
*/
export interface DocumentConfigurationResponseModel {
/**
*
* @type {boolean}
* @memberof DocumentConfigurationResponseModel
*/
disableDeleteWhenReferenced: boolean;
/**
*
* @type {boolean}
* @memberof DocumentConfigurationResponseModel
*/
disableUnpublishWhenReferenced: boolean;
/**
*
* @type {boolean}
* @memberof DocumentConfigurationResponseModel
*/
allowEditInvariantFromNonDefault: boolean;
/**
*
* @type {boolean}
* @memberof DocumentConfigurationResponseModel
*/
allowNonExistingSegmentsCreation: boolean;
}
/**
* Check if a given object implements the DocumentConfigurationResponseModel interface.
*/
export declare function instanceOfDocumentConfigurationResponseModel(value: object): value is DocumentConfigurationResponseModel;
export declare function DocumentConfigurationResponseModelFromJSON(json: any): DocumentConfigurationResponseModel;
export declare function DocumentConfigurationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentConfigurationResponseModel;
export declare function DocumentConfigurationResponseModelToJSON(json: any): DocumentConfigurationResponseModel;
export declare function DocumentConfigurationResponseModelToJSONTyped(value?: DocumentConfigurationResponseModel | null, ignoreDiscriminator?: boolean): any;