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

com.qcloud.cos.model.ciModel.auditing.AuditingStrategyRequest Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.model.ciModel.auditing;

import com.qcloud.cos.internal.CIServiceRequest;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
import com.thoughtworks.xstream.annotations.XStreamOmitField;

import java.util.ArrayList;
import java.util.List;

@XStreamAlias("Request")
public class AuditingStrategyRequest extends CIServiceRequest {
    @XStreamOmitField
    private String service;
    @XStreamAlias("Name")
    private String name;
    @XStreamAlias("Labels")
    private StrategyLabels labels;
    @XStreamImplicit(itemFieldName = "TextLibs")
    private List textLibs;
    @XStreamOmitField
    private String bizType;
    @XStreamAlias("Offset")
    private Integer offset;
    @XStreamAlias("Limit")
    private Integer limit;


    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public StrategyLabels getLabels() {
        if (labels == null) {
            labels = new StrategyLabels();
        }
        return labels;
    }

    public void setLabels(StrategyLabels labels) {
        this.labels = labels;
    }

    public List getTextLibs() {
        if (textLibs == null) {
            textLibs = new ArrayList<>();
        }
        return textLibs;
    }

    public void setTextLibs(List textLibs) {
        this.textLibs = textLibs;
    }

    public String getService() {
        return service;
    }

    public void setService(String service) {
        this.service = service;
    }

    public String getBizType() {
        return bizType;
    }

    public void setBizType(String bizType) {
        this.bizType = bizType;
    }

    public Integer getOffset() {
        return offset;
    }

    public void setOffset(Integer offset) {
        this.offset = offset;
    }

    public Integer getLimit() {
        return limit;
    }

    public void setLimit(Integer limit) {
        this.limit = limit;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy