class PP_REFLECTIVELY_CONVERTIBLE_TO_HTTP_PARAMETER

(source code)

description

Object that is reflectively convertable to a Paypal HTTP parameter list

note
	description: "Object that is reflectively convertable to a Paypal HTTP parameter list"

	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: "2023-12-06 11:04:41 GMT (Wednesday 6th December 2023)"
	revision: "6"

class
	PP_REFLECTIVELY_CONVERTIBLE_TO_HTTP_PARAMETER

inherit
	EL_REFLECTIVELY_CONVERTIBLE_TO_HTTP_PARAMETER
		rename
			field_included as is_paypal_field,
			foreign_naming as Camel_case_upper
		end

	PP_REFLECTIVELY_SETTABLE
		rename
			foreign_naming as Camel_case_upper
		end

feature {NONE} -- Constants

	Camel_case_upper: EL_CAMEL_CASE_TRANSLATER
		once
			Result := {EL_CASE}.Upper
		end
end