@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
14 lines (13 loc) • 358 B
JavaScript
import { UserAction } from "./UserAction";
import { RequestMethod } from "../../AbstractRequest";
/**
*@deprecated
*/
export class UpdateMainframeCredentials extends UserAction {
constructor(payload) {
super();
this.customPath = '/credentials/mainframe';
this.method = RequestMethod.PUT;
this.payload = payload;
}
}