def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, DepositDepositResponse)
     self.accounts = Accounts(Collection(self.client, DepositAccount))
Beispiel #2
0
 def __init__(self, client):
     '''
      Creates a client collection objects
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, MsaOrderResponse)
     self.unloads = MsaordersUnloadsCollection(Collection(self.client, MsaReturns))
Beispiel #3
0
 def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, GpaResponse)
     self.unloads = Unloads(Collection(self.client, GpaReturns))
Beispiel #4
0
 def __init__(self, token, client):
     super(BusinessContext, self).__init__(client)
     self.token = token
     self.children = self.Children(self.token, Collection(client, CardHolderModel))
     self.notes = self.Notes(self.token, client, Collection(client,
                                                            CardholderNoteResponseModel))
     self.transitions = self.Transitions(self.token, Collection(client,
                                                                BusinessTransitionResponse))
 def __init__(self, client):
     '''
     Creates a client collection objects
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, ProgramTransferResponse)
     self.types = Types(Collection(client, ProgramTransferTypeReponse))
Beispiel #6
0
 def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object
     '''
     self.client = client
     self.collections_card_response = Collection(self.client, CardResponse)
     self.collections_pan_response = Collection(self.client, PanResponse)
Beispiel #7
0
 def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object:
     '''
     self.client = client
     self.collections_cardmodel = Collection(self.client, CardHolderModel)
     self.collections_usermodel = Collection(self.client,
                                             UserCardHolderResponse)
Beispiel #8
0
 def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, BusinessCardHolderModel)
     self.collections_business = Collection(self.client,
                                            BusinessCardHolderResponse)
     self.collections_update = Collection(self.client,
                                          BusinessCardHolderUpdateModel)
    def __init__(self, token, client):

        super(CommandoModesContext, self).__init__(client)

        self.token = token
        self.transitions = self.Transitions(
            self.token, Collection(client, CommandoModeTransitionResponse))
Beispiel #10
0
 def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object
     '''
     self.client = client
     self.collections_disburse = Collection(self.client, PushToCardDisbursementResponse)
 def __init__(self, client):
     '''
      Creates a client collection objects
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, VelocityControlResponse)
Beispiel #12
0
 def __init__(self, client):
     '''
     Creates a client collection objects
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, AuthControlExemptMidsResponse)
Beispiel #13
0
 def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, DigitalWalletToken)
Beispiel #14
0
    def __init__(self, token, client):

        super(ChargebacksContext, self).__init__(client)

        self.token = token
        self.transitions = self.Transitions(
            self.token, Collection(client, ChargebackTransitionResponse))
Beispiel #15
0
 def __init__(self, client):
     '''
     Creates a client collection object
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, CardholderBalances)
Beispiel #16
0
 def __init__(self, client):
     '''
     Creates a client collection objects
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, FeeTransferResponse)
Beispiel #17
0
 def __init__(self, client):
     '''
     Creates a client collection objects
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, StoreResponseModel)
Beispiel #18
0
 def __init__(self, client):
     '''
     Creates a client collection object
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, CardProductResponse)
    def __init__(self, token, client):

        super(DirectDepositsContext, self).__init__(client)

        self.token = token
        self.transitions = self.Transitions(self.token, Collection(client,
                                                                   DirectDepositTransitionResponse))
 def __init__(self, client):
     '''
     Creates a client collection object
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, AcceptedCountriesModel)
Beispiel #21
0
 def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, MerchantResponseModel)
 def __init__(self, client):
     '''
     Creates a client collection object
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, AccountHolderGroupResponse)
Beispiel #23
0
 def __init__(self, client):
     '''
     Creates a client collection object
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, RealTimeFeeGroup)
 def __init__(self, client):
     '''
     Creates a client collection object
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, OfferOrderResponse)
Beispiel #25
0
 def __init__(self, client):
     '''
     Creates a client collection object
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, BulkIssuanceResponse)
Beispiel #26
0
 def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, ChargebackResponse)
Beispiel #27
0
 def __init__(self, client):
     '''
     Creates a client collection object
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, AutoReloadResponseModel)
Beispiel #28
0
 def __init__(self, client):
     '''
     Creates a client collection objects
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, MccGroupModel)
Beispiel #29
0
 def __init__(self, client):
     '''
     Creates a client collection objects
     :param client: client object
     '''
     self.client = client
     self.collections = Collection(self.client, AuthControlResponse)
     self.exempt_mids = AuthcontrolsExemptmidsCollection(self.client)
Beispiel #30
0
 def __init__(self, client):
     '''
     Creates a client collection objects for different responses
     :param client: client object
     '''
     self.client = client
     self.collections_pushtocards = Collection(self.client, PushtocardsPaymentcardCollection)
     self.disburse = PushtocardsDisburseCollection(self.client)
     self.payment_card = PushtocardsPaymentcardCollection(self.client)