54 lines
1.1 KiB
Java
54 lines
1.1 KiB
Java
package com.alexanderlogistics.zoho.dto;
|
|
|
|
import jakarta.json.bind.annotation.JsonbProperty;
|
|
|
|
public class ZohoContact {
|
|
|
|
@JsonbProperty("contact_id")
|
|
private String contactId;
|
|
|
|
@JsonbProperty("contact_name")
|
|
private String contactName;
|
|
|
|
@JsonbProperty("company_name")
|
|
private String companyName;
|
|
|
|
@JsonbProperty("contact_type")
|
|
private String contactType;
|
|
|
|
// Weitere Felder nach Bedarf
|
|
|
|
// Getter und Setter
|
|
public String getContactId() {
|
|
return contactId;
|
|
}
|
|
|
|
public void setContactId(String contactId) {
|
|
this.contactId = contactId;
|
|
}
|
|
|
|
public String getContactName() {
|
|
return contactName;
|
|
}
|
|
|
|
public void setContactName(String contactName) {
|
|
this.contactName = contactName;
|
|
}
|
|
|
|
public String getCompanyName() {
|
|
return companyName;
|
|
}
|
|
|
|
public void setCompanyName(String companyName) {
|
|
this.companyName = companyName;
|
|
}
|
|
|
|
public String getContactType() {
|
|
return contactType;
|
|
}
|
|
|
|
public void setContactType(String contactType) {
|
|
this.contactType = contactType;
|
|
}
|
|
|
|
}
|