Class ManualVendorDetails
- java.lang.Object
-
- com.ellucian.generated.eedm.purchase_orders.v11_2_0.ManualVendorDetails
-
@Generated("jsonschema2pojo") public class ManualVendorDetails extends Object
Manual Vendor DetailsThe details associated with an undefined vendor or an override to an existing vendor's information.
-
-
Constructor Summary
Constructors Constructor Description ManualVendorDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
List<String>
getAddressLines()
Address LinesContact
getContact()
ContactString
getName()
NamePlace
getPlace()
PlaceObject
getType()
Typeint
hashCode()
void
setAddressLines(List<String> addressLines)
Address Linesvoid
setContact(Contact contact)
Contactvoid
setName(String name)
Namevoid
setPlace(Place place)
Placevoid
setType(Object type)
TypeString
toString()
ManualVendorDetails
withAddressLines(List<String> addressLines)
ManualVendorDetails
withContact(Contact contact)
ManualVendorDetails
withName(String name)
ManualVendorDetails
withPlace(Place place)
ManualVendorDetails
withType(Object type)
-
-
-
Field Detail
-
name
@JsonPropertyDescription("The name of the vendor.") private String name
NameThe name of the vendor.
-
type
@JsonPropertyDescription("An indication of whether the vendor is a person or an organization.") private Object type
TypeAn indication of whether the vendor is a person or an organization.
-
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 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 ManualVendorDetails withName(String name)
-
getType
public Object getType()
TypeAn indication of whether the vendor is a person or an organization.
-
setType
public void setType(Object type)
TypeAn indication of whether the vendor is a person or an organization.
-
withType
public ManualVendorDetails withType(Object type)
-
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 ManualVendorDetails 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 ManualVendorDetails withPlace(Place place)
-
getContact
public Contact getContact()
ContactThe contact for the vendor.
-
setContact
public void setContact(Contact contact)
ContactThe contact for the vendor.
-
withContact
public ManualVendorDetails withContact(Contact contact)
-
-