UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.34 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 FieldPresentationModel */ export interface FieldPresentationModel { /** * * @type {string} * @memberof FieldPresentationModel */ name: string; /** * * @type {Array<string>} * @memberof FieldPresentationModel */ values: Array<string>; } /** * Check if a given object implements the FieldPresentationModel interface. */ export declare function instanceOfFieldPresentationModel(value: object): value is FieldPresentationModel; export declare function FieldPresentationModelFromJSON(json: any): FieldPresentationModel; export declare function FieldPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): FieldPresentationModel; export declare function FieldPresentationModelToJSON(json: any): FieldPresentationModel; export declare function FieldPresentationModelToJSONTyped(value?: FieldPresentationModel | null, ignoreDiscriminator?: boolean): any;