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

com.aliyun.agency20221216.models.SetCreditLineRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class SetCreditLineRequest extends TeaModel {
    @NameInMap("CreditLine")
    public String creditLine;

    @NameInMap("Uid")
    public Long uid;

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

    public SetCreditLineRequest setCreditLine(String creditLine) {
        this.creditLine = creditLine;
        return this;
    }
    public String getCreditLine() {
        return this.creditLine;
    }

    public SetCreditLineRequest setUid(Long uid) {
        this.uid = uid;
        return this;
    }
    public Long getUid() {
        return this.uid;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy