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

com.pdd.pop.sdk.http.api.pop.response.PddPngPermissionsMallStaffPushConfirmResponse 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;




public class PddPngPermissionsMallStaffPushConfirmResponse extends PopBaseHttpResponse {

    /**
     * 
     */
    @JsonProperty("staff_push_confirm_response")
    private StaffPushConfirmResponse staffPushConfirmResponse;

    public StaffPushConfirmResponse getStaffPushConfirmResponse() {
        return staffPushConfirmResponse;
    }

    public static class StaffPushConfirmResponse {

        /**
         * 0申请完成待确认;1已具备权限;2权限无效
         */
        @JsonProperty("apply_status")
        private Integer applyStatus;

        public Integer getApplyStatus() {
            return applyStatus;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy