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