TeamRequest.ts 251 B

1234567891011
  1. import { HoppRESTRequest } from "../types/HoppRESTRequest"
  2. /**
  3. * Defines how a Teams request is represented in TeamCollectionAdapter
  4. */
  5. export interface TeamRequest {
  6. id: string
  7. collectionID: string
  8. title: string
  9. request: HoppRESTRequest
  10. }