UNPKG

@broadcom/endevor-bridge-for-git-rest-api

Version:

Endevor Bridge for Git Rest client

11 lines (10 loc) 322 B
import { GlobalAction } from "./GlobalAction"; import { RequestMethod } from "../AbstractRequest"; export class SendTestEmail extends GlobalAction { constructor(payload) { super(); this.customPath = "/mail-server/test"; this.payload = payload; this.method = RequestMethod.POST; } }