Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Latest commit

 

History

History
16 lines (9 loc) · 1.34 KB

UpsertCatalogObjectRequest.md

File metadata and controls

16 lines (9 loc) · 1.34 KB

UpsertCatalogObjectRequest

Description

Properties

Name Getter Setter Type Description Notes
idempotency_key getIdempotencyKey() setIdempotencyKey($value) string A value you specify that uniquely identifies this request among all your requests. A common way to create a valid idempotency key is to use a Universally unique identifier (UUID). If you're unsure whether a particular request was successful, you can reattempt it with the same idempotency key without worrying about creating duplicate objects. See Idempotency for more information.
object getObject() setObject($value) \SquareConnect\Model\CatalogObject A CatalogObject to be created or updated. - For updates, the object must be active (the `is_deleted` field is not `true`). - For creates, the object ID must start with `#`. The provided ID is replaced with a server-generated ID.

Note: All properties are protected and only accessed via getters and setters.

[Back to Model list] [Back to API list] [Back to README]