forked from LiveCarta/PayPal-PHP-Server-SDK
Beta Release 0.5.0 (#3)
* Automated commit message * Automated commit message * Automated commit message * Automated commit message --------- Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
This commit is contained in:
27
doc/models/related-identifiers.md
Normal file
27
doc/models/related-identifiers.md
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
# 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.<br>**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.<br>**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.<br>**Constraints**: *Minimum Length*: `1`, *Maximum Length*: `20`, *Pattern*: `^[A-Z0-9]+$` | getCaptureId(): ?string | setCaptureId(?string captureId): void |
|
||||
|
||||
## Example (as JSON)
|
||||
|
||||
```json
|
||||
{
|
||||
"order_id": "order_id0",
|
||||
"authorization_id": "authorization_id8",
|
||||
"capture_id": "capture_id8"
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user