| 1234567891011121314151617181920212223242526272829303132333435363738 |
- export interface IAttachmentRequest {
- id: string;
- name: string;
- filename: string;
- title: string;
- size: number;
- content_type: string;
- url: string;
- thumbnail?: { small: string; middle: string };
- created_at?: string;
- updated_at?: string;
- }
- export interface IAttachmentUpdate {
- title: string;
- }
- export interface IAttachmentResponse {
- ok: boolean;
- message: string;
- data: IAttachmentRequest;
- }
- export interface IAttachmentListResponse {
- ok: boolean;
- message: string;
- data: { rows: IAttachmentRequest[]; count: number };
- }
- export interface IResAttachmentData {
- uid: string;
- sentence_id: string;
- attachment_id: string;
- attachment: IAttachmentRequest;
- }
- export interface IResAttachmentListResponse {
- ok: boolean;
- message: string;
- data: { rows: IResAttachmentData[]; count: number };
- }
|