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

com.pdd.pop.sdk.http.api.pop.response.PddCloudprintCustomaresGetResponse 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 PddCloudprintCustomaresGetResponse extends PopBaseHttpResponse {

    /**
     * response
     */
    @JsonProperty("pdd_cloudprint_customares_get_response")
    private InnerPddCloudprintCustomaresGetResponse pddCloudprintCustomaresGetResponse;

    public InnerPddCloudprintCustomaresGetResponse getPddCloudprintCustomaresGetResponse() {
        return pddCloudprintCustomaresGetResponse;
    }

    public static class InnerPddCloudprintCustomaresGetResponse {

        /**
         * result
         */
        @JsonProperty("result")
        private InnerPddCloudprintCustomaresGetResponseResult result;

        public InnerPddCloudprintCustomaresGetResponseResult getResult() {
            return result;
        }
    }

    public static class InnerPddCloudprintCustomaresGetResponseResult {

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

        public List getDatas() {
            return datas;
        }
    }

    public static class InnerPddCloudprintCustomaresGetResponseResultDatasItem {

        /**
         * 
         */
        @JsonProperty("custom_area_id")
        private Integer customAreaId;

        /**
         * 
         */
        @JsonProperty("custom_area_name")
        private String customAreaName;

        /**
         * 
         */
        @JsonProperty("custom_area_url")
        private String customAreaUrl;

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

        public Integer getCustomAreaId() {
            return customAreaId;
        }

        public String getCustomAreaName() {
            return customAreaName;
        }

        public String getCustomAreaUrl() {
            return customAreaUrl;
        }

        public List getKeys() {
            return keys;
        }
    }

    public static class InnerPddCloudprintCustomaresGetResponseResultDatasItemKeysItem {

        /**
         * 
         */
        @JsonProperty("key_name")
        private String keyName;

        public String getKeyName() {
            return keyName;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy