コード例 #1
0
    def __init__(self, source_id: str, attrs: dict, cred_def_id: str, name: str, price: float):

        VcxStateful.__init__(self, source_id)
        self._cred_def_id = cred_def_id
        self._attrs = attrs
        self._name = name
        self._price = price
コード例 #2
0
ファイル: issuer_credential.py プロジェクト: yisheng/sdk
    def __init__(self, source_id: str, attrs: dict, cred_def_id: str, name: str, price: float):

        VcxStateful.__init__(self, source_id)
        self._cred_def_id = cred_def_id
        self._attrs = attrs
        self._name = name
        self._price = price
コード例 #3
0
ファイル: schema.py プロジェクト: tsmcalister/indy-sdk
 def __init__(self, source_id: str, name: str, version: str, attrs: list, transaction: Optional[str] = None):
     VcxStateful.__init__(self, source_id)
     self._source_id = source_id
     self._schema_id = None
     self._attrs = attrs
     self._name = name
     self._version = version
     self._transaction = transaction
コード例 #4
0
 def __init__(self,
              source_id: str,
              name: str,
              schema_id: str,
              transaction: Optional[str] = None):
     VcxStateful.__init__(self, source_id)
     self._source_id = source_id
     self._schema_id = schema_id
     self._name = name
     self._transaction = transaction
コード例 #5
0
ファイル: connection.py プロジェクト: newbiestat/indy-sdk
 def __init__(self, source_id: str):
     VcxStateful.__init__(self, source_id)
コード例 #6
0
ファイル: proof.py プロジェクト: zyzhangyang/indy-sdk
 def __init__(self, source_id: str):
     VcxStateful.__init__(self, source_id)
     self._proof_state = 0
コード例 #7
0
 def __init__(self, source_id: str):
     VcxStateful.__init__(self, source_id)
     self._name = source_id
     self._proof_req = None
コード例 #8
0
ファイル: credential.py プロジェクト: simbo1905/sdk
 def __init__(self, source_id: str):
     VcxStateful.__init__(self, source_id)
     self._name = source_id
     self._cred_offer = None
コード例 #9
0
ファイル: proof.py プロジェクト: fabienpe/indy-sdk
 def __init__(self, source_id: str):
     VcxStateful.__init__(self, source_id)
     self._proof_state = 0
コード例 #10
0
ファイル: disclosed_proof.py プロジェクト: fabienpe/indy-sdk
 def __init__(self, source_id: str):
     VcxStateful.__init__(self, source_id)
     self._name = source_id
     self._proof_req = None
コード例 #11
0
ファイル: credential.py プロジェクト: fabienpe/indy-sdk
 def __init__(self, source_id: str):
     VcxStateful.__init__(self, source_id)
     self._name = source_id
     self._cred_offer = None
コード例 #12
0
ファイル: connection.py プロジェクト: fabienpe/indy-sdk
 def __init__(self, source_id: str):
     VcxStateful.__init__(self, source_id)