FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
doc
/
models
Edit File: create-device-code-request.md
# Create Device Code Request ## Structure `CreateDeviceCodeRequest` ## Fields | Name | Type | Tags | Description | Getter | Setter | | --- | --- | --- | --- | --- | --- | | `idempotencyKey` | `string` | Required | A unique string that identifies this CreateDeviceCode request. Keys can<br>be any valid string but must be unique for every CreateDeviceCode request.<br><br>See [Idempotency keys](https://developer.squareup.com/docs/build-basics/common-api-patterns/idempotency) for more information.<br>**Constraints**: *Minimum Length*: `1`, *Maximum Length*: `128` | getIdempotencyKey(): string | setIdempotencyKey(string idempotencyKey): void | | `deviceCode` | [`DeviceCode`](../../doc/models/device-code.md) | Required | - | getDeviceCode(): DeviceCode | setDeviceCode(DeviceCode deviceCode): void | ## Example (as JSON) ```json { "device_code": { "location_id": "B5E4484SHHNYH", "name": "Counter 1", "product_type": "TERMINAL_API", "id": "id4", "code": "code2", "device_id": "device_id0" }, "idempotency_key": "01bb00a6-0c86-4770-94ed-f5fca973cd56" } ```
Save
Back