svix
Version:
Svix webhooks API client and webhook verification library
20 lines (16 loc) • 346 B
text/typescript
// this file is @generated
export interface AdobeSignConfig {
clientId: string;
}
export const AdobeSignConfigSerializer = {
_fromJsonObject(object: any): AdobeSignConfig {
return {
clientId: object["clientId"],
};
},
_toJsonObject(self: AdobeSignConfig): any {
return {
clientId: self.clientId,
};
},
};