All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.voucherify.client.model.customer.Address Maven / Gradle / Ivy

Go to download

Voucherify-java-sdk is a Java client (can be used in Android application as well) which was created to simplify integration with Voucherify backend (http://www.voucherify.io)

There is a newer version: 16.0.2
Show newest version
package io.voucherify.client.model.customer;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;

@NoArgsConstructor(access = AccessLevel.PRIVATE)
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@Getter
@Builder
@ToString
public class Address {

  private String city;

  private String state;

  @JsonProperty("line_1")
  private String line1;

  @JsonProperty("line_2")
  private String line2;

  private String country;

  @JsonProperty("postal_code")
  private String postalCode;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy