Module nepse_tools.platforms.meroshare.type_hint
Expand source code
import typing
class ClientIdData(typing.TypedDict):
"""
Dict typehint for client id data.
"""
code: str
id: int
name: str
class InitialDataOwnData(typing.TypedDict):
"""
Dict typehint for the data that initially loads.
"""
address: str
boid: str
clientCode: str
contact: str
createdApproveDate: str
createdApproveDateStr: str
customerTypeCode: str
demat: str
dematExpiryDate: str
email: str
gender: str
id: int
imagePath: str
meroShareEmail: str
name: str
passwordChangeDate: str
passwordChangedDateStr: str
passwordExpiryDate: str
passwordExpiryDateStr: str
profileName: str
renderDashboard: bool
renewedDate: str
renewedDateStr: str
username: str
expiredDate: str
expiredDateStr: str
class MyDetailsFromBank(typing.TypedDict):
"""
Dict typehint for my details from bank.
"""
accountNumber: str
accountOpenDate: str
accountStatus: int
accountStatusFlag: str
accountStatusName: str
accountType: str
address: str
aod: str
bankCode: str
bankName: str
boid: str
branchCode: str
capital: str
citizenCode: str
citizenshipNumber: str
confirmationWaived: str
contact: str
dob: str
dpName: str
fatherMotherName: str
gender: str
grandfatherSpouseName: str
issuedDate: str
issuedFrom: str
name: str
regexCitizenNumber: str
subStatus: str
subStatusCode: str
suspensionFlag: int
class BankRequestData(typing.TypedDict):
"""
Dict typehint for data from bank request data.
"""
accountBranch: dict
accountName: str
accountNumber: str
bank: dict
boid: str
branch: dict
capital: dict
createdBy: dict
createdDate: str
crnNumber: str
id: int
kycDetail: dict
modifiedBy: dict
name: str
status: dict
class BankListView(typing.TypedDict):
"""
Dict Typehint for data gained about users bank.
"""
code: str
id: int
name: str
class BankDetailView(typing.TypedDict):
"""
Dict Typehint for detailed data gained from bank.
"""
accountBranchId: int
accountNumber: str
bankId: int
branchID: int
branchName: str
id: int
Classes
-
Dict Typehint for detailed data gained from bank.
Expand source code
class BankDetailView(typing.TypedDict): """ Dict Typehint for detailed data gained from bank. """ accountBranchId: int accountNumber: str bankId: int branchID: int branchName: str id: int
Ancestors
- builtins.dict
Class variables
-
Dict Typehint for data gained about users bank.
Expand source code
class BankListView(typing.TypedDict): """ Dict Typehint for data gained about users bank. """ code: str id: int name: str
Ancestors
- builtins.dict
Class variables
-
Dict typehint for data from bank request data.
Expand source code
class BankRequestData(typing.TypedDict): """ Dict typehint for data from bank request data. """ accountBranch: dict accountName: str accountNumber: str bank: dict boid: str branch: dict capital: dict createdBy: dict createdDate: str crnNumber: str id: int kycDetail: dict modifiedBy: dict name: str status: dict
Ancestors
- builtins.dict
Class variables
-
Dict typehint for client id data.
Expand source code
class ClientIdData(typing.TypedDict): """ Dict typehint for client id data. """ code: str id: int name: str
Ancestors
- builtins.dict
Class variables
-
Dict typehint for the data that initially loads.
Expand source code
class InitialDataOwnData(typing.TypedDict): """ Dict typehint for the data that initially loads. """ address: str boid: str clientCode: str contact: str createdApproveDate: str createdApproveDateStr: str customerTypeCode: str demat: str dematExpiryDate: str email: str gender: str id: int imagePath: str meroShareEmail: str name: str passwordChangeDate: str passwordChangedDateStr: str passwordExpiryDate: str passwordExpiryDateStr: str profileName: str renderDashboard: bool renewedDate: str renewedDateStr: str username: str expiredDate: str expiredDateStr: str
Ancestors
- builtins.dict
Class variables
-
Dict typehint for my details from bank.
Expand source code
class MyDetailsFromBank(typing.TypedDict): """ Dict typehint for my details from bank. """ accountNumber: str accountOpenDate: str accountStatus: int accountStatusFlag: str accountStatusName: str accountType: str address: str aod: str bankCode: str bankName: str boid: str branchCode: str capital: str citizenCode: str citizenshipNumber: str confirmationWaived: str contact: str dob: str dpName: str fatherMotherName: str gender: str grandfatherSpouseName: str issuedDate: str issuedFrom: str name: str regexCitizenNumber: str subStatus: str subStatusCode: str suspensionFlag: int
Ancestors
- builtins.dict
Class variables