We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there, In the api doc for rate : https://goshippo.com/docs/reference?version=2017-08-01#rates There are 2 fields available : "estimated_days" & "arrives_by"
They are not declared in the Rate Java definition.
The text was updated successfully, but these errors were encountered:
I don't work for shippo, but you should use the "days" field. Depending on api version it determines whether to use estimated_days or the Days field.
the following code snippet is from this repo
public Object getDays() { if (Shippo.apiVersion.compareTo("2017-08-01") < 0) { return days; } else { return estimated_days; } }
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi there,
In the api doc for rate : https://goshippo.com/docs/reference?version=2017-08-01#rates
There are 2 fields available : "estimated_days" & "arrives_by"
They are not declared in the Rate Java definition.
The text was updated successfully, but these errors were encountered: