| 352 | #[derive(Debug, Serialize)] |
| 353 | #[serde(rename_all = "snake_case")] |
| 354 | pub(crate) struct AddMemberRequest { |
| 355 | pub identity_id: Uuid, |
| 356 | pub role: OrgRole, |
| 357 | } |
| 358 | |
| 359 | /// Body for updating an organization member's role. |
| 360 | #[derive(Debug, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected