Skip to content

ShipmentProgression

Type: schema

TypeScript Definition

typescript
ShipmentProgression: {{
            readonly status?: string;
            readonly is_current?: boolean;
            readonly is_completed?: boolean;
            /** Format: date-time */
            readonly completion_date?: string;
        };
        /**
         * UpiPayment
         * @description UPI Payment
         */
}

OpenAPI Schema

json
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "readOnly": true
    },
    "is_current": {
      "type": "boolean",
      "readOnly": true
    },
    "is_completed": {
      "type": "boolean",
      "readOnly": true
    },
    "completion_date": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  },
  "title": "ShipmentProgression",
  "x-tags": [
    "Shipping"
  ]
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: