UNPKG

apim-developer-portal2

Version:

API management developer portal

28 lines (22 loc) 811 B
import { AuthorizationServer } from "./../../../models/authorizationServer"; export class OperationDetailsModel { /** * Indicates whether "Try" button should appear on the operation details widget. */ public enableConsole?: boolean; /** * Defines how schema gets presented in operation details by default, e.g. "table" or "raw". */ public defaultSchemaView?: string; /** * External OAuth servers associated with API of this operation. */ public authorizationServers: AuthorizationServer[]; /** * Indicates whether operation details should appear in the visible area (for example if API details is too long). */ public enableScrollTo?: boolean; constructor() { this.enableConsole = true; } }