com.worldline.sips.model.CustomerAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.commerce.payment.method.mercanet
Show all versions of com.liferay.commerce.payment.method.mercanet
Liferay Commerce Payment Method Mercanet
package com.worldline.sips.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonPropertyOrder(alphabetic = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class CustomerAddress extends Address {
private String businessName;
public String getBusinessName() {
return businessName;
}
public void setBusinessName(String businessName) {
this.businessName = businessName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy