svix
Version:
Svix webhooks API client and webhook verification library
67 lines (63 loc) • 2.15 kB
text/typescript
// this file is @generated
import { type ConnectorKind, ConnectorKindSerializer } from "./connectorKind";
import { type ConnectorProduct, ConnectorProductSerializer } from "./connectorProduct";
export interface ConnectorOut {
allowedEventTypes?: string[] | null;
createdAt: Date;
description: string;
featureFlags?: string[] | null;
/** The Connector's ID. */
id: string;
instructions: string;
kind: ConnectorKind;
logo?: string | null;
name: string;
/** The Environment's ID. */
orgId: string;
productType: ConnectorProduct;
transformation: string;
transformationUpdatedAt: Date;
/** The Connector's UID. */
uid?: string | null;
updatedAt: Date;
}
export const ConnectorOutSerializer = {
_fromJsonObject(object: any): ConnectorOut {
return {
allowedEventTypes: object["allowedEventTypes"],
createdAt: new Date(object["createdAt"]),
description: object["description"],
featureFlags: object["featureFlags"],
id: object["id"],
instructions: object["instructions"],
kind: ConnectorKindSerializer._fromJsonObject(object["kind"]),
logo: object["logo"],
name: object["name"],
orgId: object["orgId"],
productType: ConnectorProductSerializer._fromJsonObject(object["productType"]),
transformation: object["transformation"],
transformationUpdatedAt: new Date(object["transformationUpdatedAt"]),
uid: object["uid"],
updatedAt: new Date(object["updatedAt"]),
};
},
_toJsonObject(self: ConnectorOut): any {
return {
allowedEventTypes: self.allowedEventTypes,
createdAt: self.createdAt,
description: self.description,
featureFlags: self.featureFlags,
id: self.id,
instructions: self.instructions,
kind: ConnectorKindSerializer._toJsonObject(self.kind),
logo: self.logo,
name: self.name,
orgId: self.orgId,
productType: ConnectorProductSerializer._toJsonObject(self.productType),
transformation: self.transformation,
transformationUpdatedAt: self.transformationUpdatedAt,
uid: self.uid,
updatedAt: self.updatedAt,
};
},
};