com.aliyun.aliding20230426.models.GrantHonorShrinkHeaders Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GrantHonorShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GrantHonorShrinkHeaders build(java.util.Map map) throws Exception {
GrantHonorShrinkHeaders self = new GrantHonorShrinkHeaders();
return TeaModel.build(map, self);
}
public GrantHonorShrinkHeaders setCommonHeaders(java.util.Map commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map getCommonHeaders() {
return this.commonHeaders;
}
public GrantHonorShrinkHeaders setAccountContextShrink(String accountContextShrink) {
this.accountContextShrink = accountContextShrink;
return this;
}
public String getAccountContextShrink() {
return this.accountContextShrink;
}
}