-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccountDetails.java
More file actions
25 lines (21 loc) · 839 Bytes
/
AccountDetails.java
File metadata and controls
25 lines (21 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ikai.unitshop;
/**
* Created by shiv on 22/11/17.
*/
class AccountDetails {
public String bankName, accountHolder, accountNumber, IFSCCode, aadhaarNumber,
UPIVPA, paytm;
// Default constructor required for calls to DataSnapshot.getValue(Seller.class)
public AccountDetails() {}
public AccountDetails( final String bankName, final String accountHolder,
final String accountNumber, final String IFSCCode,
final String aadhaarNumber, final String UPIVPA, final String paytm) {
this.bankName = bankName;
this.accountHolder = accountHolder;
this.accountNumber = accountNumber;
this.IFSCCode = IFSCCode;
this.aadhaarNumber = aadhaarNumber;
this.UPIVPA =UPIVPA;
this.paytm = paytm;
}
}