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

com.pdd.pop.sdk.http.api.pop.response.PddMedicineConsultReceiveResponse Maven / Gradle / Ivy

The newest version!
package com.pdd.pop.sdk.http.api.pop.response;

import com.pdd.pop.ext.fasterxml.jackson.annotation.JsonProperty;
import com.pdd.pop.sdk.http.PopBaseHttpResponse;




public class PddMedicineConsultReceiveResponse extends PopBaseHttpResponse {

    /**
     * 
     */
    @JsonProperty("medicine_consult_receive_response")
    private MedicineConsultReceiveResponse medicineConsultReceiveResponse;

    public MedicineConsultReceiveResponse getMedicineConsultReceiveResponse() {
        return medicineConsultReceiveResponse;
    }

    public static class MedicineConsultReceiveResponse {

        /**
         * 
         */
        @JsonProperty("success")
        private Boolean success;

        public Boolean getSuccess() {
            return success;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy