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

io.fruitful.ecomerce.dto.MagentoAddressRequest Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package io.fruitful.ecomerce.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.ArrayList;
import java.util.List;

@Data
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
public class MagentoAddressRequest {
	private String region;

	private Long regionId;

	private String regionCode;

	private String countryId;

	private List street = new ArrayList<>();

	private String postcode;

	private String city;

	private String firstname;

	private String lastname;

	private Long customerId;

	private String email;

	private String telephone;

	private Integer sameAsBilling;

	private Integer save_in_address_book;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy