svix
Version:
Svix webhooks API client and webhook verification library
23 lines (19 loc) • 496 B
text/typescript
// this file is @generated
export interface GoogleCloudStoragePatchConfig {
bucket?: string;
credentials?: string;
}
export const GoogleCloudStoragePatchConfigSerializer = {
_fromJsonObject(object: any): GoogleCloudStoragePatchConfig {
return {
bucket: object["bucket"],
credentials: object["credentials"],
};
},
_toJsonObject(self: GoogleCloudStoragePatchConfig): any {
return {
bucket: self.bucket,
credentials: self.credentials,
};
},
};