...
This commit is contained in:
22
lib/threefold/grid4/datamodel/model_bid.v
Normal file
22
lib/threefold/grid4/datamodel/model_bid.v
Normal file
@@ -0,0 +1,22 @@
|
||||
module datamodel
|
||||
|
||||
@[heap]
|
||||
pub struct Reservation {
|
||||
pub mut:
|
||||
id u32
|
||||
customer_id u32 //links back to customer for this capacity
|
||||
compute_slices []u32
|
||||
storage_slices []u32
|
||||
status ReservationStatus
|
||||
obligation bool //if obligation then will be charged and money needs to be in escrow, otherwise its an intent
|
||||
start_date u32 //epoch
|
||||
end_date u32
|
||||
}
|
||||
|
||||
pub enum ReservationStatus {
|
||||
pending
|
||||
confirmed
|
||||
assigned
|
||||
cancelled
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user