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

com.vmware.connectors.coupa.domain.Supplier Maven / Gradle / Ivy

/*
 * Copyright © 2019 VMware, Inc. All Rights Reserved.
 * SPDX-License-Identifier: BSD-2-Clause
 */

package com.vmware.connectors.coupa.domain;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
public class Supplier {

    @JsonProperty("number")
    private String number;

    @JsonProperty("company-code")
    private String companyCode;

    public String getNumber() {
        return number;
    }

    public void setNumber(String number) {
        this.number = number;
    }

    public String getCompanyCode() {
        return companyCode;
    }

    public void setCompanyCode(String companyCode) {
        this.companyCode = companyCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy