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

com.ksyun.pnp.sdk.domain.request.QueryReq Maven / Gradle / Ivy

package com.ksyun.pnp.sdk.domain.request;

import com.fasterxml.jackson.annotation.JsonProperty;
import org.apache.commons.lang3.StringUtils;

public class QueryReq {

    @JsonProperty("PoolKey")
    private String poolKey;

    @JsonProperty("SubsId")
    private String subsId;

    public String getPoolKey() {
        return poolKey;
    }

    public QueryReq setPoolKey(String poolKey) {
        this.poolKey = poolKey == null ? StringUtils.EMPTY : poolKey.trim();
        return this;
    }

    public String getSubsId() {
        return subsId;
    }

    public QueryReq setSubsId(String subsId) {
        this.subsId = subsId == null ? StringUtils.EMPTY : subsId.trim();
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy