o2o-infinith-frontend/src/shared/api/model/otherChannel.ts

16 lines
342 B
TypeScript

/**
* Generated by orval v7.21.0 🍺
* Do not edit manually.
* FastAPI
* OpenAPI spec version: 0.1.0
*/
import type { ChannelStatus } from './channelStatus';
import type { OtherChannelUrl } from './otherChannelUrl';
export interface OtherChannel {
name: string;
status: ChannelStatus;
details: string;
url?: OtherChannelUrl;
}