SempMeta: {
    count?: number;
    error?: SempError;
    paging?: SempPaging;
    request: SempRequest;
    responseCode: number;
}

Type declaration

  • Optional count?: number

    The total number of objects requested, irrespective of page size. This may be a count of all objects in a collection or a filtered subset. It represents a snapshot in time and may change when paging through results.

  • Optional error?: SempError
  • Optional paging?: SempPaging
  • request: SempRequest
  • responseCode: number

    The HTTP response code, one of 200 (success), 4xx (client error), or 5xx (server error).