E-Payment Integrator 2020 C++ Edition

Questions / Feedback?

CustomerAggregate Property

This property allows you to get or set an XML aggregate built from all of the Customer properties.

Syntax

ANSI (Cross Platform)
char* GetCustomerAggregate();
int SetCustomerAggregate(const char* lpszCustomerAggregate); Unicode (Windows) LPWSTR GetCustomerAggregate();
INT SetCustomerAggregate(LPCWSTR lpszCustomerAggregate);
@property (nonatomic,readwrite,assign,getter=customerAggregate,setter=setCustomerAggregate:) NSString* customerAggregate;
- (NSString*)customerAggregate;
- (void)setCustomerAggregate:(NSString*)newCustomerAggregate;
#define PID_ECHECK_CUSTOMERAGGREGATE 11

INPAY_EXTERNAL void* INPAY_CALL InPay_ECheck_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
INPAY_EXTERNAL int INPAY_CALL InPay_ECheck_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

""

Remarks

This property allows you to get or set an XML aggregate built from all of the Customer properties. "EPCustomer" is the root element. The Customer properties make up the tags under the root, but without the beginning "Customer". For instance:

<EPCustomer>
  <Address>123 Nowhere Ln.</Address>
	<Address2>Apt 3B.</Address2>
	<City>Beverly Hills</City>	
	...	
</EPCustomer>

This property is not available at design time.

Data Type

String

Copyright (c) 2021 /n software inc. - All rights reserved.
E-Payment Integrator 2020 C++ Edition - Version 20.0 [Build 7941]