| 405 | #[derive(Debug, Serialize)] |
| 406 | #[serde(rename_all = "camelCase")] |
| 407 | pub(crate) struct AddGrantRequest { |
| 408 | pub subject_type: GrantSubjectType, |
| 409 | #[serde(skip_serializing_if = "Option::is_none")] |
| 410 | pub subject_id: Option<Uuid>, |
| 411 | pub relation: GrantRelation, |
| 412 | } |
| 413 | |
| 414 | /// Body for revoking a grant. |
| 415 | #[derive(Debug, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected