00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef Payment_Type_Parameter_HPP
00012 #define Payment_Type_Parameter_HPP
00013
00014 #include "read_write_base.hpp"
00015 #include "paymentEnumerations.h"
00016
00017 class Payment_Type_Parameter_Obj: public read_write_base
00018 {
00019 public:
00020 identifier Id;
00021 llong Service_Type;
00022 long Value_Location;
00023 long Param_Type;
00024 long Interface_Type;
00025 string Name;
00026 string Machine_Name;
00027 string Value;
00028 string Instructions;
00029
00030 Payment_Type_Parameter_Obj():read_write_base()
00031 ,Id(0LL)
00032 ,Service_Type(0LL)
00033 ,Value_Location(0L)
00034 ,Param_Type(0L)
00035 ,Interface_Type(0L)
00036 ,Name("")
00037 ,Machine_Name("")
00038 ,Value("")
00039 ,Instructions("")
00040 {
00041
00042 data_name("Payment_Type_Parameter");
00043
00044 addDXMap( new llongXfer("Id", &Id ));
00045 addDXMap( new llongXfer("Service_Type", &Service_Type ));
00046 addDXMap( new longXfer("Value_Location", &Value_Location ));
00047 addDXMap( new longXfer("Param_Type", &Param_Type ));
00048 addDXMap( new longXfer("Interface_Type", &Interface_Type ));
00049 addDXMap( new stringXfer("Name", &Name ));
00050 addDXMap( new stringXfer("Machine_Name", &Machine_Name ));
00051 addDXMap( new stringXfer("Value", &Value ));
00052 addDXMap( new stringXfer("Instructions", &Instructions ));
00053 }
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069 };
00070 #endif
00071