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
# Conditionally performs an age verification check. If a record matching the request is found in the internal store, the associated response is returned. Otherwise, an age verification check is performed and the response is stored if the individual is determined to be of age.
47
+
#
48
+
# The request must meet the following criteria in order to be evaluated:
49
+
# * *firstName*, *lastName*, and *address* are required fields.
50
+
# * One of the following sets of attributes are required for the *address*:
51
+
# * *line1, city, region*
52
+
# * *line1, postalCode*
53
+
#
54
+
# * Optionally, the request may use the following parameters:
55
+
# * A *DOB* (Date of Birth) field. The value should be ISO-8601 compliant (e.g. 2020-07-21).
56
+
# * Beyond the required *address* fields above, a *country* field is permitted
57
+
# * The valid values for this attribute are [*US, USA*]
58
+
# Swagger Name: AvaTaxBeverageClient
59
+
# @param simulatedFailureCode [String] (Optional) The failure code included in the simulated response of the endpoint. Note that this endpoint is only available in Sandbox for testing purposes.
60
+
# @param model [Object] Information about the individual whose age is being verified.
0 commit comments