9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
export interface IntegrationUpdate {
|
|
featureFlags?: string[];
|
|
name: string;
|
|
}
|
|
export declare const IntegrationUpdateSerializer: {
|
|
_fromJsonObject(object: any): IntegrationUpdate;
|
|
_toJsonObject(self: IntegrationUpdate): any;
|
|
};
|