umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
39 lines (38 loc) • 1.35 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 DomainPresentationModel
*/
export interface DomainPresentationModel {
/**
*
* @type {string}
* @memberof DomainPresentationModel
*/
domainName: string;
/**
*
* @type {string}
* @memberof DomainPresentationModel
*/
isoCode: string;
}
/**
* Check if a given object implements the DomainPresentationModel interface.
*/
export declare function instanceOfDomainPresentationModel(value: object): value is DomainPresentationModel;
export declare function DomainPresentationModelFromJSON(json: any): DomainPresentationModel;
export declare function DomainPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainPresentationModel;
export declare function DomainPresentationModelToJSON(json: any): DomainPresentationModel;
export declare function DomainPresentationModelToJSONTyped(value?: DomainPresentationModel | null, ignoreDiscriminator?: boolean): any;