import { Application } from './encodingFormat'; export type IHttpMethod = 'POST'; export interface IEntryPoint { typeOf: 'EntryPoint'; /** * The supported encoding type(s) for an EntryPoint request. */ encodingType: Application.json; /** * An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. * Values are capitalized strings as used in HTTP. */ httpMethod: IHttpMethod; /** * An url template (RFC6570) that will be used to construct the target of the execution of the action. */ urlTemplate: string; }