order.d.ts 663 B

123456789101112131415161718192021222324
  1. import { Keyable } from "./keyable";
  2. export interface Order {
  3. order_id: string;
  4. project_id: string;
  5. branch: string;
  6. payment_method: string | null;
  7. card_id: number | string;
  8. status: string;
  9. created_at: string;
  10. created_at_timestamp: number;
  11. created_by: number;
  12. created_by_email: string;
  13. source_language_iso: string;
  14. target_language_isos: string[];
  15. keys: number[] | string[];
  16. source_words: Keyable;
  17. provider_slug: string;
  18. translation_style: string;
  19. translation_tier: number;
  20. translation_tier_name: string;
  21. briefing: string;
  22. is_saved_to_translation_memory: boolean;
  23. total: number;
  24. }