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

com.antgroup.antchain.openapi.twc.models.KeywordsPosition Maven / Gradle / Ivy

There is a newer version: 1.12.23
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;

import com.aliyun.tea.*;

public class KeywordsPosition extends TeaModel {
    // 关键字
    @NameInMap("keyword")
    @Validation(required = true)
    public String keyword;

    // 页码
    @NameInMap("page_index")
    @Validation(required = true)
    public Long pageIndex;

    // x坐标
    @NameInMap("pos_x")
    @Validation(required = true)
    public String posX;

    // y坐标
    @NameInMap("pos_y")
    @Validation(required = true)
    public String posY;

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

    public KeywordsPosition setKeyword(String keyword) {
        this.keyword = keyword;
        return this;
    }
    public String getKeyword() {
        return this.keyword;
    }

    public KeywordsPosition setPageIndex(Long pageIndex) {
        this.pageIndex = pageIndex;
        return this;
    }
    public Long getPageIndex() {
        return this.pageIndex;
    }

    public KeywordsPosition setPosX(String posX) {
        this.posX = posX;
        return this;
    }
    public String getPosX() {
        return this.posX;
    }

    public KeywordsPosition setPosY(String posY) {
        this.posY = posY;
        return this;
    }
    public String getPosY() {
        return this.posY;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy