GspUpiCollectionsHeader
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 GSP Card settlement file uses a header object to encapsulate settlement details.\u003c/p\u003e\n"],["\u003cp\u003eThe header includes a unique ID for the transaction batch, the number of payment entries, and the number of refund entries.\u003c/p\u003e\n"],["\u003cp\u003eAll header fields (\u003ccode\u003eupiCollectionsId\u003c/code\u003e, \u003ccode\u003epaymentRecordCount\u003c/code\u003e, \u003ccode\u003erefundRecordCount\u003c/code\u003e) are required and utilize specific data formats.\u003c/p\u003e\n"]]],["The content defines a header object for GSP Card settlement files, represented in JSON. It includes three required fields: `upiCollectionsId`, a unique string ID for the transaction batch; `paymentRecordCount`, a string representing the number of payment entries; and `refundRecordCount`, a string representing the number of refund entries. Both count fields are in Int64Value format. This header encapsulates the detail surrounding a settlement batch.\n"],null,["# GspUpiCollectionsHeader\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| ``` { \"upiCollectionsId\": string, \"paymentRecordCount\": string, \"refundRecordCount\": string } ``` |\n\n| Fields ||\n|----------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|\n| `upiCollectionsId` | `string` **REQUIRED**: This should be a unique ID that identifies this batch of transactions. |\n| `paymentRecordCount` | `string (`[Int64Value](https://developers.google.com/discovery/v1/type-format)` format)` **REQUIRED**: The number of payment entries in this file. |\n| `refundRecordCount` | `string (`[Int64Value](https://developers.google.com/discovery/v1/type-format)` format)` **REQUIRED**: The number of refund entries in this file. |"]]