OrderActivity
Type: schema
TypeScript Definition
typescript
OrderActivity: {{
activity_type?: $Read<string>;
order_status?: $Read<string>;
comment: string;
/** @enum {unknown} */
user_type?: $Read<"customer" | "admin" | "system">;
user_name?: $Read<string>;
/** Format: date-time */
created_at?: $Read<string>;
/** Format: date-time */
modified_at?: $Read<string>;
};
/** OrderDetail */
}OpenAPI Schema
json
{
"type": "object",
"properties": {
"activity_type": {
"type": "string",
"readOnly": true
},
"order_status": {
"type": "string",
"readOnly": true
},
"comment": {
"type": "string"
},
"user_type": {
"enum": [
"customer",
"admin",
"system"
],
"readOnly": true
},
"user_name": {
"type": "string",
"readOnly": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"modified_at": {
"type": "string",
"format": "date-time",
"readOnly": true
}
},
"required": [
"comment"
],
"title": "OrderActivity",
"x-tags": [
"Orders"
]
}Auto-generated from OpenAPI spec and TypeScript definitions