Struct dao::bid_escrow::job_offer::PostJobOfferRequest
source · pub struct PostJobOfferRequest {
pub job_offer_id: JobOfferId,
pub job_poster: Address,
pub job_poster_kyced: bool,
pub max_budget: Balance,
pub expected_timeframe: BlockTime,
pub dos_fee: Balance,
pub start_time: BlockTime,
pub configuration: Rc<Configuration>,
}
Expand description
Data required to post a job offer.
Fields§
§job_offer_id: JobOfferId
New offer id.
job_poster: Address
The offer creator.
job_poster_kyced: bool
Is the creator passed the KYC process.
max_budget: Balance
Max amount the Job Poster can pay for the Job.
expected_timeframe: BlockTime
The time the Job should be completed.
dos_fee: Balance
CSPR amount attached to Post Job query.
start_time: BlockTime
The time since the offer is available for Bidders.
configuration: Rc<Configuration>
Job configuration.
Auto Trait Implementations§
impl RefUnwindSafe for PostJobOfferRequest
impl !Send for PostJobOfferRequest
impl !Sync for PostJobOfferRequest
impl Unpin for PostJobOfferRequest
impl UnwindSafe for PostJobOfferRequest
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