Class ManualVendorDetail
- java.lang.Object
-
- com.ellucian.generated.eedm.purchase_orders.v10_0.ManualVendorDetail
-
@Generated("jsonschema2pojo") public class ManualVendorDetail extends Object
Manual Vendor DetailThe detail associated with an undefined vendor or an override to an existing vendor's information.
-
-
Field Summary
Fields Modifier and Type Field Description private List<String>
addressLines
Address Linesprivate Contact__1
contact
Contactprivate String
name
Nameprivate Place
place
Place
-
Constructor Summary
Constructors Constructor Description ManualVendorDetail()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
List<String>
getAddressLines()
Address LinesContact__1
getContact()
ContactString
getName()
NamePlace
getPlace()
Placeint
hashCode()
void
setAddressLines(List<String> addressLines)
Address Linesvoid
setContact(Contact__1 contact)
Contactvoid
setName(String name)
Namevoid
setPlace(Place place)
PlaceString
toString()
ManualVendorDetail
withAddressLines(List<String> addressLines)
ManualVendorDetail
withContact(Contact__1 contact)
ManualVendorDetail
withName(String name)
ManualVendorDetail
withPlace(Place place)
-
-
-
Field Detail
-
name
@JsonPropertyDescription("The name of the vendor.") private String name
NameThe name of the vendor.
-
addressLines
@JsonPropertyDescription("The address lines of the vendor\'s location, such as a street address or post office box number, city, region, and postal code.") private List<String> addressLines
Address LinesThe address lines of the vendor's location, such as a street address or post office box number, city, region, and postal code.
-
place
@JsonPropertyDescription("A country specific postal region. Postal regions are expressed as a hierarchy of country, region, and sub-region, and as a locality with postal automation codes.") private Place place
PlaceA country specific postal region. Postal regions are expressed as a hierarchy of country, region, and sub-region, and as a locality with postal automation codes.
-
contact
@JsonPropertyDescription("The contact for the vendor.") private Contact__1 contact
ContactThe contact for the vendor.
-
-
Method Detail
-
getName
public String getName()
NameThe name of the vendor.
-
setName
public void setName(String name)
NameThe name of the vendor.
-
withName
public ManualVendorDetail withName(String name)
-
getAddressLines
public List<String> getAddressLines()
Address LinesThe address lines of the vendor's location, such as a street address or post office box number, city, region, and postal code.
-
setAddressLines
public void setAddressLines(List<String> addressLines)
Address LinesThe address lines of the vendor's location, such as a street address or post office box number, city, region, and postal code.
-
withAddressLines
public ManualVendorDetail withAddressLines(List<String> addressLines)
-
getPlace
public Place getPlace()
PlaceA country specific postal region. Postal regions are expressed as a hierarchy of country, region, and sub-region, and as a locality with postal automation codes.
-
setPlace
public void setPlace(Place place)
PlaceA country specific postal region. Postal regions are expressed as a hierarchy of country, region, and sub-region, and as a locality with postal automation codes.
-
withPlace
public ManualVendorDetail withPlace(Place place)
-
getContact
public Contact__1 getContact()
ContactThe contact for the vendor.
-
setContact
public void setContact(Contact__1 contact)
ContactThe contact for the vendor.
-
withContact
public ManualVendorDetail withContact(Contact__1 contact)
-
-