import { INotificationBinaryFile } from "./notification_binary_file"; import { WebRequestTemplateHttpVerb } from "./web_request_template_http_verb"; import { NotificationBinaryFileType } from "./notification_binary_file_type"; /** URL template. */ export interface IWebRequestTemplate extends INotificationBinaryFile { /** Gets or sets the data to be sent as the POST data. Null otherwise. */ postBody: string; /** Gets or sets the request type is an HTTP GET or POST. */ requestType?: WebRequestTemplateHttpVerb; /** Gets or sets get the type of the binary data for notifications. */ type: NotificationBinaryFileType; /** Gets or sets the url to connect to. */ url: string; } //# sourceMappingURL=web_request_template.d.ts.map