E-Payment Integrator 2020 Python Edition

Questions / Feedback?

customer_aggregate Property

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

Syntax

def get_customer_aggregate() -> str: ...
def set_customer_aggregate(value: str) -> None: ...

customer_aggregate = property(get_customer_aggregate, set_customer_aggregate)

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>

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