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

com.imsweb.seerapi.client.ndc.NdcPackage Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2015 Information Management Services, Inc.
 */
package com.imsweb.seerapi.client.ndc;

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

@JsonPropertyOrder({"package", "description"})
public class NdcPackage {

    @JsonProperty("package")
    private String code;
    @JsonProperty("description")
    private String description;
    @JsonProperty("start_marketing_date")
    private String startMarketingDate;
    @JsonProperty("end_marketing_date")
    private String endMarketingDate;

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getStartMarketingDate() {
        return startMarketingDate;
    }

    public void setStartMarketingDate(String startMarketingDate) {
        this.startMarketingDate = startMarketingDate;
    }

    public String getEndMarketingDate() {
        return endMarketingDate;
    }

    public void setEndMarketingDate(String endMarketingDate) {
        this.endMarketingDate = endMarketingDate;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy