io.github.dft.mayers.model.account.AccountInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mayers-sdk Show documentation
Show all versions of mayers-sdk Show documentation
mayers-sdk API using JDK 11
The newest version!
package io.github.dft.mayers.model.account;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import lombok.Data;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonNaming(PropertyNamingStrategies.UpperCamelCaseStrategy.class)
public class AccountInformation {
private String customerNumber;
private String customerName;
private String contact;
private String salesperson;
private String defaultBillToAddressCode;
private String defaultShipToAddressCode;
private String billToAddressCode;
private String billToAddress1;
private String billToAddress2;
private String billToCity;
private String billToState;
private String billToZIP;
private String billToCountry;
private String billToPhone1;
private String billToPhone2;
private String billToPhone3;
private String shipToAddressCode;
}