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

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

There is a newer version: 1.10.85
Show 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;

import java.util.List;



public class PddPngMallStaffBatchSycnResponse extends PopBaseHttpResponse {

    /**
     * 
     */
    @JsonProperty("mall_staff_batch_sync_response")
    private MallStaffBatchSyncResponse mallStaffBatchSyncResponse;

    public MallStaffBatchSyncResponse getMallStaffBatchSyncResponse() {
        return mallStaffBatchSyncResponse;
    }

    public static class MallStaffBatchSyncResponse {

        /**
         * 
         */
        @JsonProperty("push_result")
        private List pushResult;

        public List getPushResult() {
            return pushResult;
        }
    }

    public static class MallStaffBatchSyncResponsePushResultItem {

        /**
         * 推送状态
         */
        @JsonProperty("push_status")
        private Integer pushStatus;

        /**
         * 员工id
         */
        @JsonProperty("staff_id")
        private Long staffId;

        public Integer getPushStatus() {
            return pushStatus;
        }

        public Long getStaffId() {
            return staffId;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy