GspCardEnrichmentHeaderRecord
Stay organized with collections
Save and categorize content based on your preferences.
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-28 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-28 UTC."],[[["\u003cp\u003eThe JSON object is a header for GSP Card settlement files, providing context for the settlement details.\u003c/p\u003e\n"],["\u003cp\u003eIt includes crucial identifiers like a unique batch ID (\u003ccode\u003ecardNetbankingCollectionsId\u003c/code\u003e), the settlement ID, and the total item count within the file.\u003c/p\u003e\n"],["\u003cp\u003eAll three fields (\u003ccode\u003ecardNetbankingCollectionsId\u003c/code\u003e, \u003ccode\u003esettlementId\u003c/code\u003e, \u003ccode\u003enumberOfItems\u003c/code\u003e) are mandatory and have specific data types, with \u003ccode\u003enumberOfItems\u003c/code\u003e represented as a string formatted Int64Value.\u003c/p\u003e\n"]]],["The header object, used in GSP Card settlement files, contains three key fields: `cardNetbankingCollectionsId`, a unique identifier for the transaction batch; `settlementId`, linking the file to a specific settlement; and `numberOfItems`, indicating the count of entries within the file, excluding the header. All three fields are required, with the latter being represented as a string in `Int64Value` format. The header encapsulates the details of the settlement within.\n"],null,["# GspCardEnrichmentHeaderRecord\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nA header object that is used for the purposes of GSP Card settlement files. It is used to encapsulate the detail surrounding the contained settlement.\n\n| JSON representation |\n|----------------------------------------------------------------------------------------------------|\n| ``` { \"cardNetbankingCollectionsId\": string, \"settlementId\": string, \"numberOfItems\": string } ``` |\n\n| Fields ||\n|-------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `cardNetbankingCollectionsId` | `string` **REQUIRED**: This should be a unique ID that identifies this batch of transactions. |\n| `settlementId` | `string` **REQUIRED**: The settlement ID that this file is associated with. |\n| `numberOfItems` | `string (`[Int64Value](https://developers.google.com/discovery/v1/type-format)` format)` **REQUIRED**: The number of entries in this file, not counting the header entry. |"]]