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

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

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

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

import java.util.List;



public class PddServiceMailServiceTimeQueryResponse extends PopBaseHttpResponse {

    /**
     * 
     */
    @JsonProperty("response")
    private Response response;

    public Response getResponse() {
        return response;
    }

    public static class Response {

        /**
         * 
         */
        @JsonProperty("errorCode")
        private Integer errorCode;

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

        /**
         * 
         */
        @JsonProperty("errorMsg")
        private String errorMsg;

        /**
         * 
         */
        @JsonProperty("serviceTimes")
        private List serviceTimes;

        public Integer getErrorCode() {
            return errorCode;
        }

        public Boolean getFlag() {
            return flag;
        }

        public String getErrorMsg() {
            return errorMsg;
        }

        public List getServiceTimes() {
            return serviceTimes;
        }
    }

    public static class ResponseServiceTimesItem {

        /**
         * 开始服务时间
         */
        @JsonProperty("startTime")
        private String startTime;

        /**
         * 结束服务时间
         */
        @JsonProperty("endTime")
        private String endTime;

        /**
         * 服务日期
         */
        @JsonProperty("serviceDate")
        private String serviceDate;

        public String getStartTime() {
            return startTime;
        }

        public String getEndTime() {
            return endTime;
        }

        public String getServiceDate() {
            return serviceDate;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy