Auction

Auction

{
  "action": "<'CREATE','UPDATE','DELETE'>",
  "object": "AUCTION",
  "data": {
    "uuid": "UUID (Primary Key)",
    "title": "<TranslatableModel>",
    "description": "<TranslatableModel>",
    "sale_no": "Varchar(55), (Unique Sale Number)",
    "currency_code": "Varchar(3) (ISO 4217 currency code Ex.: 'USD')",
    "department_uuid": "UUID (Primary Key of Department)",
    "branch_uuid": "UUID (Primary Key of Branch)",
    "type": "Enum<'timed', 'live'>",
    "start_date": "DateTime",
    "end_date": "DateTime",
    "viewing_start_date": "DateTime",
    "viewing_end_date": "DateTime",
    "status": "Enum<'draft', 'published', 'listed', 'completed'>",
    "images": "List<ImageModel>",
    "increments": "List<IncrementModel>",
    "premium_terms": "List<PremiumTierModel>",
    "delay_batch": "Integer",
    "delay_interval": "Integer",
    "bidder_approval": "Boolean",
    "max_total_delay": "Integer",
    "is_private_treaty": "Integer"
  }
}