Files
FrenoCorp/node_modules/svix/src/models/httpPatchConfig.ts

20 lines
322 B
TypeScript

// this file is @generated
export interface HttpPatchConfig {
url?: string;
}
export const HttpPatchConfigSerializer = {
_fromJsonObject(object: any): HttpPatchConfig {
return {
url: object["url"],
};
},
_toJsonObject(self: HttpPatchConfig): any {
return {
url: self.url,
};
},
};