umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
45 lines (44 loc) • 1.51 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 TemporaryFileResponseModel
*/
export interface TemporaryFileResponseModel {
/**
*
* @type {string}
* @memberof TemporaryFileResponseModel
*/
id: string;
/**
*
* @type {Date}
* @memberof TemporaryFileResponseModel
*/
availableUntil?: Date | null;
/**
*
* @type {string}
* @memberof TemporaryFileResponseModel
*/
fileName: string;
}
/**
* Check if a given object implements the TemporaryFileResponseModel interface.
*/
export declare function instanceOfTemporaryFileResponseModel(value: object): value is TemporaryFileResponseModel;
export declare function TemporaryFileResponseModelFromJSON(json: any): TemporaryFileResponseModel;
export declare function TemporaryFileResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): TemporaryFileResponseModel;
export declare function TemporaryFileResponseModelToJSON(json: any): TemporaryFileResponseModel;
export declare function TemporaryFileResponseModelToJSONTyped(value?: TemporaryFileResponseModel | null, ignoreDiscriminator?: boolean): any;