Log_Haynes_GetSessionToken Tables
The logs_haynes_getSessionToken_latest and logs_haynes_getSessionToken_changelog tables stores the requests and responses of each getSessionToken haynes pro API call made, including errors and api timestamps.
🔹 Standard Columns​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
document_name | STRING | YES | Name of the Firestore document |
document_event_id | STRING | YES | Unique ID representing the document event (change ID) |
document_timestamp | TIMESTAMP | YES | Timestamp when the document event occurred |
document_operation | STRING | YES | Type of Firestore operation (e.g., CREATE, UPDATE, DELETE) |
document_id | STRING | YES | ID of the Firestore document |
apiCallTimeInMilliSeconds | INT64 | YES | Time taken to complete the API call in milliseconds |
context | STRING | YES | Context of the log (e.g., module or feature name) |
level | STRING | YES | Log level |
year | STRING | YES | year of the API call |
month | STRING | YES | month of the API call |
day | STRING | YES | day of the API call |
documentId | STRING | YES | unique document id in firebase |
🔸 Struct Columns​
request
​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
message | STRING | YES | Description of the request |
payload.countryCode | STRING | YES | Country code |
payload.sessionTokenRequestKey | STRING | YES | Session Token Request Key |
timestamp | INT64 | YES | Timestamp of the request (in Unix time) |
response
​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
message | STRING | YES | Response message |
timestamp | INT64 | YES | Timestamp of the response (in Unix time) |
data.GetSessionTokenResult | STRING | YES | Session token result |
timestamp
​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
seconds | INT64 | YES | Seconds since Unix epoch |
nanoseconds | INT64 | YES | Nanoseconds part of the timestamp |
error
​
Column Name | Data Type | Nullable | Description |
---|---|---|---|
data | STRING | YES | Additional error data |
message | STRING | YES | Error message |
name | STRING | YES | Name/type of the error |
stack | STRING | YES | Stack trace of the error |
timestamp | TIMESTAMP | YES | Timestamp when the error occurred |