@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
31 lines • 1.77 kB
TypeScript
import * as z from "zod";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type CreateAgreementSummaryRequest = {
accountId: string;
agreementId: string;
};
/** @internal */
export declare const CreateAgreementSummaryRequest$inboundSchema: z.ZodType<CreateAgreementSummaryRequest, z.ZodTypeDef, unknown>;
/** @internal */
export type CreateAgreementSummaryRequest$Outbound = {
accountId: string;
agreementId: string;
};
/** @internal */
export declare const CreateAgreementSummaryRequest$outboundSchema: z.ZodType<CreateAgreementSummaryRequest$Outbound, z.ZodTypeDef, CreateAgreementSummaryRequest>;
/**
* @internal
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
*/
export declare namespace CreateAgreementSummaryRequest$ {
/** @deprecated use `CreateAgreementSummaryRequest$inboundSchema` instead. */
const inboundSchema: z.ZodType<CreateAgreementSummaryRequest, z.ZodTypeDef, unknown>;
/** @deprecated use `CreateAgreementSummaryRequest$outboundSchema` instead. */
const outboundSchema: z.ZodType<CreateAgreementSummaryRequest$Outbound, z.ZodTypeDef, CreateAgreementSummaryRequest>;
/** @deprecated use `CreateAgreementSummaryRequest$Outbound` instead. */
type Outbound = CreateAgreementSummaryRequest$Outbound;
}
export declare function createAgreementSummaryRequestToJSON(createAgreementSummaryRequest: CreateAgreementSummaryRequest): string;
export declare function createAgreementSummaryRequestFromJSON(jsonString: string): SafeParseResult<CreateAgreementSummaryRequest, SDKValidationError>;
//# sourceMappingURL=createagreementsummary.d.ts.map