n8n-nodes-soaprequest
Version:
n8n node for soap requests
17 lines (16 loc) • 453 B
TypeScript
declare class SoapMessage {
private headers;
private body;
private envelopeAttributes;
constructor(headers: string[], body: string, envelopeAttributes: Record<string, string>);
toString(): string;
}
export declare class SOAPMessageBuilder {
private headers;
private body;
private envelopeAttributes;
addHeader(header: string | undefined): this;
setBody(body: string): this;
build(): SoapMessage;
}
export {};