Files
workavia-drive/tdrive/connectors/onlyoffice-connector/src/interfaces/office-token.interface.ts
T
Eric Doughty-Papassideris 87d0de92d8 ♻️ ooconnector: routing refactor (#525)
2024-09-15 20:52:42 +02:00

11 lines
218 B
TypeScript

export interface OfficeToken {
user_id: string;
company_id: string;
file_id: string;
file_name: string;
preview: boolean;
editing_session_key: string;
drive_file_id?: string;
in_page_token?: boolean;
}