| 484 | #[derive(Debug, Serialize)] |
| 485 | #[serde(rename_all = "snake_case")] |
| 486 | pub(crate) struct AddTeamMemberRequest { |
| 487 | pub identity_id: Uuid, |
| 488 | pub role: TeamRole, |
| 489 | } |
| 490 | |
| 491 | /// Body for updating a team member's role. |
| 492 | #[derive(Debug, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected