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

com.aliyun.ice20201109.models.UpdateSmartJobResponse Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;

import com.aliyun.tea.*;

public class UpdateSmartJobResponse extends TeaModel {
    @NameInMap("headers")
    @Validation(required = true)
    public java.util.Map headers;

    @NameInMap("body")
    @Validation(required = true)
    public UpdateSmartJobResponseBody body;

    public static UpdateSmartJobResponse build(java.util.Map map) throws Exception {
        UpdateSmartJobResponse self = new UpdateSmartJobResponse();
        return TeaModel.build(map, self);
    }

    public UpdateSmartJobResponse setHeaders(java.util.Map headers) {
        this.headers = headers;
        return this;
    }
    public java.util.Map getHeaders() {
        return this.headers;
    }

    public UpdateSmartJobResponse setBody(UpdateSmartJobResponseBody body) {
        this.body = body;
        return this;
    }
    public UpdateSmartJobResponseBody getBody() {
        return this.body;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy