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

com.antgroup.antchain.openapi.twc.models.LeaseOrderExtra 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 LeaseOrderExtra extends TeaModel {
    // 额外信息的主键
    @NameInMap("key")
    @Validation(required = true)
    public String key;

    // 额外信息的值
    @NameInMap("value")
    @Validation(required = true)
    public String value;

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

    public LeaseOrderExtra setKey(String key) {
        this.key = key;
        return this;
    }
    public String getKey() {
        return this.key;
    }

    public LeaseOrderExtra setValue(String value) {
        this.value = value;
        return this;
    }
    public String getValue() {
        return this.value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy