當前位置: 首頁>>代碼示例>>Python>>正文


Python credit_card.CreditCard類代碼示例

本文整理匯總了Python中braintree.credit_card.CreditCard的典型用法代碼示例。如果您正苦於以下問題:Python CreditCard類的具體用法?Python CreditCard怎麽用?Python CreditCard使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了CreditCard類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: create_signature

 def create_signature():
     return [
         "company", "email", "fax", "first_name", "id", "last_name", "phone", "website", "device_data", "device_session_id", "fraud_merchant_id", "payment_method_nonce",
         {"risk_data": ["customer_browser", "customer_ip"]},
         {"credit_card": CreditCard.create_signature()},
         {"custom_fields": ["__any_key__"]}
     ]
開發者ID:monster-michael,項目名稱:braintree_python,代碼行數:7,代碼來源:customer.py

示例2: update

 def update(self, credit_card_token, params={}):
     Resource.verify_keys(params, CreditCard.update_signature())
     response = self.config.http().put("/payment_methods/" + credit_card_token, {"credit_card": params})
     if "credit_card" in response:
         return SuccessfulResult({"credit_card": CreditCard(self.gateway, response["credit_card"])})
     elif "api_error_response" in response:
         return ErrorResult(self.gateway, response["api_error_response"])
開發者ID:Getaround,項目名稱:braintree_python,代碼行數:7,代碼來源:credit_card_gateway.py

示例3: vault_credit_card

    def vault_credit_card(self):
        """
        The vault credit card associated with this transaction
        """

        if self.credit_card_details.token is None:
            return None
        return CreditCard.find(self.credit_card_details.token)
開發者ID:szaboat,項目名稱:braintree_python_examples,代碼行數:8,代碼來源:transaction.py

示例4: update_signature

 def update_signature():
     return [
         "company", "email", "fax", "first_name", "id", "last_name", "phone", "website", "device_data", "device_session_id", "fraud_merchant_id", "payment_method_nonce", "default_payment_method_token",
         {"credit_card": CreditCard.signature("update_via_customer")},
         {"custom_fields": ["__any_key__"]},
         {"options": [{"paypal": [
             "payee_email",
             "order_id",
             "custom_field",
             "description",
             "amount",
             { "shipping": Address.create_signature() }
         ]}]},
     ]
開發者ID:braintree,項目名稱:braintree_python,代碼行數:14,代碼來源:customer.py

示例5: update_signature

 def update_signature():
     return [
         "company", "email", "fax", "first_name", "id", "last_name", "phone", "website",
         {"credit_card": CreditCard.signature("update_via_customer")},
         {"custom_fields": ["__any_key__"]}
     ]
開發者ID:DongHuaLu,項目名稱:mdcom,代碼行數:6,代碼來源:customer.py

示例6: tr_data_for_update

 def tr_data_for_update(self, tr_data, redirect_url):
     Resource.verify_keys(tr_data, ["payment_method_token", {"credit_card": CreditCard.update_signature()}])
     tr_data["kind"] = TransparentRedirect.Kind.UpdatePaymentMethod
     return self.gateway.transparent_redirect.tr_data(tr_data, redirect_url)
開發者ID:Getaround,項目名稱:braintree_python,代碼行數:4,代碼來源:credit_card_gateway.py

示例7: create

 def create(self, params={}):
     Resource.verify_keys(params, CreditCard.create_signature())
     return self._post("/payment_methods", {"credit_card": params})
開發者ID:Getaround,項目名稱:braintree_python,代碼行數:3,代碼來源:credit_card_gateway.py

示例8: create_signature

 def create_signature():
     return [
         "company", "email", "fax", "first_name", "id", "last_name", "phone", "website", "device_data",
         {"credit_card": CreditCard.create_signature()},
         {"custom_fields": ["__any_key__"]}
     ]
開發者ID:hathawsh,項目名稱:braintree_python,代碼行數:6,代碼來源:customer.py


注:本文中的braintree.credit_card.CreditCard類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。