E-Payment Integrator 2020 Java Edition

Questions / Feedback?

EPShipInfo Type

Contains shipping information.

Remarks

This type contains the shipping information which the merchant has collected. Shipping information is typically optional data. This type is used by the ICharge classs.

Example:

  EPShipInfo shipInfo = new EPShipInfo();
  shipInfo.FirstName = "John"
  shipInfo.LastName = "Smith"
  shipInfo.Address = "123 Nowhere Ln."
  shipInfo.City = "Beverly Hills"
  shipInfo.State = "CA"
  shipInfo.Zip = "90210"
  shipInfo.Country = "USA"
  shipInfo.Phone = "555-555-5555"

  ICharge1.ShippingInfo = shipInfo;

Fields

Address
String

Customer's shipping street address.

Address2
String

A specific detail on the customer's shipping address (such as building, suite, apartment, floor number etc.).

City
String

Customer's shipping city.

Country
String

Customer's shipping country. This field contains the country in which the customer is located. Most gateways use a two-letter country code, specified in ISO-3166.

Email
String

Customer's email address.

FirstName
String

Customer's first name.

LastName
String

Customer's last name.

Phone
String

Customer's phone number.

State
String

Customer's shipping state.

Zip
String

Customer's shipping zip code (or postal code if outside of the USA).

Constructors

public EPShipInfo();



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