| 457 | #[derive(Debug, Serialize)] |
| 458 | #[serde(rename_all = "snake_case")] |
| 459 | pub(crate) struct AddTeamMemberRequest { |
| 460 | pub identity_id: Uuid, |
| 461 | pub role: TeamRole, |
| 462 | } |
| 463 | |
| 464 | /// Body for updating a team member's role. |
| 465 | #[derive(Debug, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected