pub struct create_challenge;Expand description
Create a new challenge (admin only)
POST /challenges
§Request Body
- organization_id: UUID
- building_id: Option
(null = organization-wide) - challenge_type: ChallengeType (Individual, Team, Building)
- title: String (3-100 chars)
- description: String (10-1000 chars)
- icon: String
- start_date: DateTime
- end_date: DateTime
- target_metric: String (e.g., “bookings_created”)
- target_value: i32
- reward_points: i32 (0-10000)
§Responses
- 201 Created: Challenge created successfully (Draft status)
- 400 Bad Request: Validation error
Trait Implementations§
Auto Trait Implementations§
impl Freeze for create_challenge
impl RefUnwindSafe for create_challenge
impl Send for create_challenge
impl Sync for create_challenge
impl Unpin for create_challenge
impl UnwindSafe for create_challenge
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Chain<T> for T
impl<T> Chain<T> for T
§impl<T> Fake for T
impl<T> Fake for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.