umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
51 lines (50 loc) • 1.95 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 TemporaryFileConfigurationResponseModel
*/
export interface TemporaryFileConfigurationResponseModel {
/**
*
* @type {Array<string>}
* @memberof TemporaryFileConfigurationResponseModel
*/
imageFileTypes: Array<string>;
/**
*
* @type {Array<string>}
* @memberof TemporaryFileConfigurationResponseModel
*/
disallowedUploadedFilesExtensions: Array<string>;
/**
*
* @type {Array<string>}
* @memberof TemporaryFileConfigurationResponseModel
*/
allowedUploadedFileExtensions: Array<string>;
/**
*
* @type {number}
* @memberof TemporaryFileConfigurationResponseModel
*/
maxFileSize?: number | null;
}
/**
* Check if a given object implements the TemporaryFileConfigurationResponseModel interface.
*/
export declare function instanceOfTemporaryFileConfigurationResponseModel(value: object): value is TemporaryFileConfigurationResponseModel;
export declare function TemporaryFileConfigurationResponseModelFromJSON(json: any): TemporaryFileConfigurationResponseModel;
export declare function TemporaryFileConfigurationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): TemporaryFileConfigurationResponseModel;
export declare function TemporaryFileConfigurationResponseModelToJSON(json: any): TemporaryFileConfigurationResponseModel;
export declare function TemporaryFileConfigurationResponseModelToJSONTyped(value?: TemporaryFileConfigurationResponseModel | null, ignoreDiscriminator?: boolean): any;