class PP_BUTTON_DETAIL
Client examples: PAYPAL_STANDARD_BUTTON_MANAGER_AUTOTEST_APP
Details of Paypal button. Just to confuse matters, Paypal names these fields using lower_snake_case rather than UPPERCAMELCASE.
note
	description: "[
		Details of Paypal button. Just to confuse matters, Paypal names these fields using `lower_snake_case' rather
		than `UPPERCAMELCASE'.
	]"
	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: "2022-11-15 19:56:06 GMT (Tuesday 15th November 2022)"
	revision: "13"
		
		class
	PP_BUTTON_DETAIL
inherit
	EL_REFLECTIVELY_SETTABLE
		rename
			make_default as make,
			field_included as is_any_field,
			foreign_naming as eiffel_naming
		undefine
			new_representations
		end
	EL_SETTABLE_FROM_ZSTRING
		rename
			make_default as make
		end
	EL_CURRENCY_PROPERTY
create
	make
feature -- Access
	bn: STRING
	business: STRING
	item_name: ZSTRING
	item_number: STRING
	no_note: NATURAL_8
	product_info: PP_PRODUCT_INFO
		do
			create Result.make
			Result.set_currency_code (currency_code)
			Result.set_item_name (item_name)
			Result.set_item_number (item_number)
		end
end