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

com.qcloud.cos.model.ciModel.job.FileHashCodeConfig Maven / Gradle / Ivy

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

import com.thoughtworks.xstream.annotations.XStreamAlias;

public class FileHashCodeConfig {
    @XStreamAlias("Type")
    private String type;

    @XStreamAlias("AddToHeader")
    private String addToHeader;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getAddToHeader() {
        return addToHeader;
    }

    public void setAddToHeader(String addToHeader) {
        this.addToHeader = addToHeader;
    }

    @Override
    public String toString() {
        final StringBuffer sb = new StringBuffer("FileHashCodeConfig{");
        sb.append("type='").append(type).append('\'');
        sb.append(", addToHeader='").append(addToHeader).append('\'');
        sb.append('}');
        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy