Working with the api, I notice that PendingState is not using a pointer, but the value 0 is a valid information to business:
|
PaymentState int64 `json:"paymentState,omitempty"` |
I believe will be best to change it to a pointer like the PurchaseType (example).
I notice that because when I call the .MarshalJSON() the field disappeared.
If allowed, I can submit this PR.
Working with the api, I notice that PendingState is not using a pointer, but the value 0 is a valid information to business:
google-api-go-client/androidpublisher/v3/androidpublisher-gen.go
Line 1932 in 8001663
I believe will be best to change it to a pointer like the
PurchaseType(example).I notice that because when I call the
.MarshalJSON()the field disappeared.If allowed, I can submit this PR.