diff --git a/src/types/schema/role.rs b/src/types/schema/role.rs index 97ab248..65faa39 100644 --- a/src/types/schema/role.rs +++ b/src/types/schema/role.rs @@ -21,6 +21,6 @@ pub struct RoleCreateModifySchema { /// Represents the schema which needs to be sent to update a roles' position. /// See: [https://docs.spacebar.chat/routes/#cmp--schemas-rolepositionupdateschema](https://docs.spacebar.chat/routes/#cmp--schemas-rolepositionupdateschema) pub struct RolePositionUpdateSchema { - pub id: Snowflake, - pub position: i32, + pub id: String, + pub position: u16, }