UNPKG

n8n-nodes-soaprequest

Version:
17 lines (16 loc) 453 B
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 {};