com.webull.openapi.trade.api.response.AccountDetail Maven / Gradle / Ivy
/*
* Copyright 2022 Webull
*
* Licensed 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
*
* https://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.
*/
package com.webull.openapi.trade.api.response;
public class AccountDetail {
private String accountNumber;
private String accountType;
private String accountStatus;
public String getAccountNumber() {
return accountNumber;
}
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}
public String getAccountType() {
return accountType;
}
public void setAccountType(String accountType) {
this.accountType = accountType;
}
public String getAccountStatus() {
return accountStatus;
}
public void setAccountStatus(String accountStatus) {
this.accountStatus = accountStatus;
}
@Override
public String toString() {
return "AccountDetail{" +
"accountNumber='" + accountNumber + '\'' +
", accountType='" + accountType + '\'' +
", accountStatus='" + accountStatus + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy