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

com.aliyun.dingtalkdoc_1_0.models.GetDeveloperMetadataResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_1_0.models;

import com.aliyun.tea.*;

public class GetDeveloperMetadataResponseBody extends TeaModel {
    @NameInMap("associatedColumn")
    public GetDeveloperMetadataResponseBodyAssociatedColumn associatedColumn;

    @NameInMap("associatedRow")
    public GetDeveloperMetadataResponseBodyAssociatedRow associatedRow;

    @NameInMap("value")
    public Object value;

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

    public GetDeveloperMetadataResponseBody setAssociatedColumn(GetDeveloperMetadataResponseBodyAssociatedColumn associatedColumn) {
        this.associatedColumn = associatedColumn;
        return this;
    }
    public GetDeveloperMetadataResponseBodyAssociatedColumn getAssociatedColumn() {
        return this.associatedColumn;
    }

    public GetDeveloperMetadataResponseBody setAssociatedRow(GetDeveloperMetadataResponseBodyAssociatedRow associatedRow) {
        this.associatedRow = associatedRow;
        return this;
    }
    public GetDeveloperMetadataResponseBodyAssociatedRow getAssociatedRow() {
        return this.associatedRow;
    }

    public GetDeveloperMetadataResponseBody setValue(Object value) {
        this.value = value;
        return this;
    }
    public Object getValue() {
        return this.value;
    }

    public static class GetDeveloperMetadataResponseBodyAssociatedColumn extends TeaModel {
        /**
         * 

This parameter is required.

*/ @NameInMap("column") public Integer column; /** *

This parameter is required.

*/ @NameInMap("sheetId") public String sheetId; public static GetDeveloperMetadataResponseBodyAssociatedColumn build(java.util.Map map) throws Exception { GetDeveloperMetadataResponseBodyAssociatedColumn self = new GetDeveloperMetadataResponseBodyAssociatedColumn(); return TeaModel.build(map, self); } public GetDeveloperMetadataResponseBodyAssociatedColumn setColumn(Integer column) { this.column = column; return this; } public Integer getColumn() { return this.column; } public GetDeveloperMetadataResponseBodyAssociatedColumn setSheetId(String sheetId) { this.sheetId = sheetId; return this; } public String getSheetId() { return this.sheetId; } } public static class GetDeveloperMetadataResponseBodyAssociatedRow extends TeaModel { /** *

This parameter is required.

*/ @NameInMap("row") public Integer row; /** *

This parameter is required.

*/ @NameInMap("sheetId") public String sheetId; public static GetDeveloperMetadataResponseBodyAssociatedRow build(java.util.Map map) throws Exception { GetDeveloperMetadataResponseBodyAssociatedRow self = new GetDeveloperMetadataResponseBodyAssociatedRow(); return TeaModel.build(map, self); } public GetDeveloperMetadataResponseBodyAssociatedRow setRow(Integer row) { this.row = row; return this; } public Integer getRow() { return this.row; } public GetDeveloperMetadataResponseBodyAssociatedRow setSheetId(String sheetId) { this.sheetId = sheetId; return this; } public String getSheetId() { return this.sheetId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy