
cn.bif.model.request.BIFContractInvokeRequest Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* © COPYRIGHT 2021 Corporation CAICT All rights reserved.
* http://www.caict.ac.cn
*/
package cn.bif.model.request;
public class BIFContractInvokeRequest {
private String senderAddress;
private Long feeLimit;
private String contractAddress;
private Long BIFAmount;
private String input;
private Long ceilLedgerSeq;
private String remarks;
private String privateKey;
private Long gasPrice;
private Integer domainId;
private Integer nonceType;
public Integer getDomainId() {
return domainId;
}
public void setDomainId(Integer domainId) {
this.domainId = domainId;
}
public Long getGasPrice() {
return gasPrice;
}
public void setGasPrice(Long gasPrice) {
this.gasPrice = gasPrice;
}
public String getRemarks() {
return remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
/**
* @Method getSenderAddress
* @Params []
* @Return java.lang.String
*/
public String getSenderAddress() {
return senderAddress;
}
/**
* @Method setSenderAddress
* @Params [senderAddress]
* @Return void
*/
public void setSenderAddress(String senderAddress) {
this.senderAddress = senderAddress;
}
public Long getFeeLimit() {
return feeLimit;
}
public void setFeeLimit(Long feeLimit) {
this.feeLimit = feeLimit;
}
public String getContractAddress() {
return contractAddress;
}
public void setContractAddress(String contractAddress) {
this.contractAddress = contractAddress;
}
public Long getBIFAmount() {
return BIFAmount;
}
public void setBIFAmount(Long bifAmount) {
this.BIFAmount = bifAmount;
}
public String getInput() {
return input;
}
public void setInput(String input) {
this.input = input;
}
/**
* @Method getCeilLedgerSeq
* @Params []
* @Return Long
*/
public Long getCeilLedgerSeq() {
return ceilLedgerSeq;
}
/**
* @Method setCeilLedgerSeq
* @Params [ceilLedgerSeq]
* @Return void
*/
public void setCeilLedgerSeq(Long ceilLedgerSeq) {
this.ceilLedgerSeq = ceilLedgerSeq;
}
public String getPrivateKey() {
return privateKey;
}
public void setPrivateKey(String privateKey) {
this.privateKey = privateKey;
}
public Integer getNonceType() {
return nonceType;
}
public void setNonceType(Integer nonceType) {
this.nonceType = nonceType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy