1
0
Files
PayPal-PHP-Server-SDK/doc/models/related-identifiers.md
Patrick Powers 6da8b9b5b8 1.1.0 Release (#44)
* Automated commit message

* add changelog

---------

Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
Co-authored-by: Patrick Powers <patickpowers@hey.com>
2025-05-27 13:31:17 -05:00

1.1 KiB

Related Identifiers

Identifiers related to a specific resource.

Structure

RelatedIdentifiers

Fields

Name Type Tags Description Getter Setter
orderId ?string Optional Order ID related to the resource.

Constraints: Minimum Length: 1, Maximum Length: 20, Pattern: ^[A-Z0-9]+$
getOrderId(): ?string setOrderId(?string orderId): void
authorizationId ?string Optional Authorization ID related to the resource.

Constraints: Minimum Length: 1, Maximum Length: 20, Pattern: ^[A-Z0-9]+$
getAuthorizationId(): ?string setAuthorizationId(?string authorizationId): void
captureId ?string Optional Capture ID related to the resource.

Constraints: Minimum Length: 1, Maximum Length: 20, Pattern: ^[A-Z0-9]+$
getCaptureId(): ?string setCaptureId(?string captureId): void

Example (as JSON)

{
  "order_id": "order_id0",
  "authorization_id": "authorization_id8",
  "capture_id": "capture_id8"
}