/** *
Represents a data model for an API. See Create Models and Mapping Templates for Request and Response * Mappings.
*/ export interface _Model { /** *The content-type for the model, for example, "application/json".
*/ ContentType?: string; /** *The description of the model.
*/ Description?: string; /** *The model identifier.
*/ ModelId?: string; /** *The name of the model. Must be alphanumeric.
*/ Name: string; /** *The schema for the model. For application/json models, this should be JSON schema * draft 4 model.
*/ Schema?: string; } export declare type _UnmarshalledModel = _Model;