@signnow/api-client
Version:
SignNow REST Service Wrapper
16 lines (15 loc) • 450 B
TypeScript
import { BaseClass } from '../../../types/baseClass';
export declare class DocumentGet implements BaseClass {
private documentId;
private queryParams;
constructor(documentId: string);
getPayload(): Record<string, string>;
getMethod(): string;
getUrl(): string;
getAuthMethod(): string;
getContentType(): string;
getQueryParams(): Record<string, string>;
getUriParams(): {
document_id: string;
};
}