Skip to content

OrderActivity

Type: schema

TypeScript Definition

typescript
OrderActivity: {{
            readonly activity_type?: string;
            readonly order_status?: string;
            comment: string;
            /** @enum {unknown} */
            readonly user_type?: "customer" | "admin" | "system";
            readonly user_name?: string;
            /** Format: date-time */
            readonly created_at?: string;
            /** Format: date-time */
            readonly modified_at?: 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

Last updated: