17 lines
286 B
TypeScript
17 lines
286 B
TypeScript
// this file is @generated
|
|
|
|
export enum SinkStatusIn {
|
|
Enabled = "enabled",
|
|
Disabled = "disabled",
|
|
}
|
|
|
|
export const SinkStatusInSerializer = {
|
|
_fromJsonObject(object: any): SinkStatusIn {
|
|
return object;
|
|
},
|
|
|
|
_toJsonObject(self: SinkStatusIn): any {
|
|
return self;
|
|
},
|
|
};
|