You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GDPR int `json:"gdpr,omitempty" // Flag that indicates whether or not the request is subject to GDPR regulations 0 = No, 1 = Yes, omission indicates Unknown
But marshaller converts {gdpr: 0} into "{}" string. Thus should be:
GDPR int `json:"gdpr"
The text was updated successfully, but these errors were encountered:
GDPR int `json:"gdpr,omitempty" // Flag that indicates whether or not the request is subject to GDPR regulations 0 = No, 1 = Yes, omission indicates Unknown
But marshaller converts {gdpr: 0} into "{}" string. Thus should be:
GDPR int `json:"gdpr"
The text was updated successfully, but these errors were encountered: