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

com.youcruit.billogram.objects.response.customer.BaseCustomer Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.youcruit.billogram.objects.response.customer;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

class BaseCustomer {
    @Expose
    private String name;
    @SerializedName("org_no")
    @Expose
    private String orgNo;
    @SerializedName("customer_no")
    @Expose
    private Integer customerNo;

    public String getName() {
	return name;
    }

    public void setName(String name) {
	this.name = name;
    }

    public Integer getCustomerNo() {
	return customerNo;
    }

    public void setCustomerNo(Integer customerNo) {
	this.customerNo = customerNo;
    }

    public String getOrgNo() {
	return orgNo;
    }

    public void setOrgNo(String orgNo) {
	this.orgNo = orgNo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy