package com.genpt.nsight.v4.model.majoraccounts; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Getter; import lombok.Setter; import java.util.UUID; @Getter @Setter public class Fulfillment { protected UUID fulfillmentIdentifier; protected String type; @JsonInclude(JsonInclude.Include.NON_DEFAULT) protected int rank; protected String commonIdentifier; protected String alternateIdentifier; protected String city; protected String state; protected String country; protected String zipcode; protected String address1; protected String address2; @JsonProperty("RawDelivery") protected Delivery delivery; }