20 lines
367 B
TypeScript
20 lines
367 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
|
|
/**
|
|
* Board-group payload returned from read endpoints.
|
|
*/
|
|
export interface BoardGroupRead {
|
|
created_at: string;
|
|
description?: string | null;
|
|
id: string;
|
|
name: string;
|
|
organization_id: string;
|
|
slug: string;
|
|
updated_at: string;
|
|
}
|