| 390 | #[derive(Debug, Serialize)] |
| 391 | #[serde(rename_all = "snake_case")] |
| 392 | pub(crate) struct AddTeamMemberRequest { |
| 393 | pub identity_id: Uuid, |
| 394 | pub role: TeamRole, |
| 395 | } |
| 396 | |
| 397 | /// Body for updating a team member's role. |
| 398 | #[derive(Debug, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected