UNPKG

umbraco-management-api-client

Version:

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

117 lines (116 loc) 3.01 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 CreatePackageRequestModel */ export interface CreatePackageRequestModel { /** * * @type {string} * @memberof CreatePackageRequestModel */ name: string; /** * * @type {string} * @memberof CreatePackageRequestModel */ contentNodeId?: string | null; /** * * @type {boolean} * @memberof CreatePackageRequestModel */ contentLoadChildNodes: boolean; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ mediaIds: Array<string>; /** * * @type {boolean} * @memberof CreatePackageRequestModel */ mediaLoadChildNodes: boolean; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ documentTypes: Array<string>; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ mediaTypes: Array<string>; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ dataTypes: Array<string>; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ templates: Array<string>; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ partialViews: Array<string>; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ stylesheets: Array<string>; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ scripts: Array<string>; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ languages: Array<string>; /** * * @type {Array<string>} * @memberof CreatePackageRequestModel */ dictionaryItems: Array<string>; /** * * @type {string} * @memberof CreatePackageRequestModel */ id?: string | null; } /** * Check if a given object implements the CreatePackageRequestModel interface. */ export declare function instanceOfCreatePackageRequestModel(value: object): value is CreatePackageRequestModel; export declare function CreatePackageRequestModelFromJSON(json: any): CreatePackageRequestModel; export declare function CreatePackageRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePackageRequestModel; export declare function CreatePackageRequestModelToJSON(json: any): CreatePackageRequestModel; export declare function CreatePackageRequestModelToJSONTyped(value?: CreatePackageRequestModel | null, ignoreDiscriminator?: boolean): any;