| 1 | type CloneRequest { |
| 2 | |
| 3 | id: ID! |
| 4 | |
| 5 | sourceApplicationId: ID! |
| 6 | |
| 7 | destinationApplicationId: ID! |
| 8 | |
| 9 | numberOfRecordings: Int |
| 10 | |
| 11 | numberOfCompletedRecordings: Int |
| 12 | |
| 13 | createdDateTime: DateTime |
| 14 | |
| 15 | modifiedDateTime: DateTime |
| 16 | |
| 17 | status: String |
| 18 | |
| 19 | percentage: Int |
| 20 | |
| 21 | } |