Skip to content

PosDeviceClaimedUser

Type: schema

TypeScript Definition

typescript
PosDeviceClaimedUser: {{
            readonly id: string;
            first_name: string;
            last_name: string | null;
            phone: string;
            /** Format: email */
            email: string;
        };
        /** PosLocation */
}

OpenAPI Schema

json
{
  "title": "PosDeviceClaimedUser",
  "type": "object",
  "externalDocs": {
    "url": "https://llm-docs.commercengine.io/storefront/schemas/PosDeviceClaimedUser",
    "description": "API reference for the PosDeviceClaimedUser schema"
  },
  "required": [
    "id",
    "first_name",
    "last_name",
    "phone",
    "email"
  ],
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true
    },
    "first_name": {
      "type": "string"
    },
    "last_name": {
      "type": [
        "string",
        "null"
      ]
    },
    "phone": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    }
  }
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: