GspFileHeader
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 header object precedes all GSP files exchanged with Google and Payment Integrators and includes crucial identifying information.\u003c/p\u003e\n"],["\u003cp\u003eIt contains four required fields: requestId, generationTimestamp, type, and paymentIntegratorAccountId.\u003c/p\u003e\n"],["\u003cp\u003erequestId uniquely identifies the request within a PIAID, generationTimestamp indicates file creation time, type specifies the file's content, and paymentIntegratorAccountId identifies the specific account.\u003c/p\u003e\n"],["\u003cp\u003eEach field has specific data type and format requirements, like requestId being a string with a maximum length of 100 characters and containing only alphanumeric characters, colon, hyphen, and underscore.\u003c/p\u003e\n"],["\u003cp\u003eThe header object ensures clear communication and proper identification of files exchanged between Google, Payment Integrators, and users.\u003c/p\u003e\n"]]],["The content describes a header object used in GSP files exchanged with Google and payment integrators. This header includes a unique `requestId` (max 100 characters), a `generationTimestamp` indicating file creation time, a `type` specifying the file's content, and a `paymentIntegratorAccountId` identifying a unique contractual account. These four fields are all required and are presented in JSON format within the GSP files.\n"],null,["# GspFileHeader\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nHeader object that precedes all GSP files received/sent from/to Google and Payment integrators.\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"requestId\": string, \"generationTimestamp\": { object (/pay/card-fop-v1/google-card-fop-api/settlementNotification#Timestamp) }, \"type\": string, \"paymentIntegratorAccountId\": string } ``` |\n\n| Fields ||\n|------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `requestId` | `string` **REQUIRED**: Unique identifier of this request. This identifier is unique within a PIAID. This is a string that has a max length of 100 characters, and contains only the characters \"a-z\", \"A-Z\", \"0-9\", \":\", \"-\", and \"_\". |\n| `generationTimestamp` | `object (`[Timestamp](/pay/card-fop-v1/google-card-fop-api/settlementNotification#Timestamp)`)` **REQUIRED**: Timestamp of the file creation. |\n| `type` | `string` **REQUIRED**: Denotes which file spec the content contains. |\n| `paymentIntegratorAccountId` | `string` **REQUIRED**: Identifies a unique account with contractual constraints. |"]]