class AIA_PURCHASE_REQUEST
Client examples: AMAZON_INSTANT_ACCESS_TEST_SET
Instant Access purchase request
note
description: "[
Instant Access [https://s3-us-west-2.amazonaws.com/dtg-docs/api/once/fulfill_purchase.html purchase request]
]"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2024-09-23 12:23:10 GMT (Monday 23rd September 2024)"
revision: "10"
class
AIA_PURCHASE_REQUEST
inherit
AIA_REQUEST
redefine
new_representations
end
create
make
feature -- Access
reason: NATURAL_8
product_id: STRING
user_id: STRING
purchase_token: STRING
feature {NONE} -- Implementation
default_response: AIA_PURCHASE_RESPONSE
do
create Result.make (response_enum.ok)
end
new_representations: like Default_representations
do
create Result.make_one ("reason", Reason_enum.to_representation)
end
end