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

com.yodlee.api.model.AbstractAddress Maven / Gradle / Ivy

There is a newer version: 1.0.29.beta1
Show newest version
/**
 * Copyright (c) 2019 Yodlee, Inc. All Rights Reserved.
 *
 * Licensed under the MIT License. See LICENSE file in the project root for license information.
 */
package com.yodlee.api.model;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonInclude(JsonInclude.Include.NON_NULL)
public abstract class AbstractAddress extends AbstractModelComponent {

	@JsonProperty("address1")
	protected String address1;

	@JsonProperty("address2")
	protected String address2;

	@JsonProperty("address3")
	protected String address3;

	@JsonProperty("state")
	protected String state;

	@JsonProperty("city")
	protected String city;

	@JsonProperty("zip")
	protected String zip;

	@JsonProperty("country")
	protected String country;

	public String getZip() {
		return zip;
	}

	public void setZip(String zip) {
		this.zip = zip;
	}

	public String getState() {
		return state;
	}

	public void setState(String state) {
		this.state = state;
	}

	public String getAddress1() {
		return address1;
	}

	public void setAddress1(String address1) {
		this.address1 = address1;
	}

	public String getAddress2() {
		return address2;
	}

	public void setAddress2(String address2) {
		this.address2 = address2;
	}

	public String getAddress3() {
		return address3;
	}

	public void setAddress3(String address3) {
		this.address3 = address3;
	}

	public String getCountry() {
		return country;
	}

	public void setCountry(String country) {
		this.country = country;
	}

	public String getCity() {
		return city;
	}

	public void setCity(String city) {
		this.city = city;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy