__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.85: ~ $
from _typeshed import Incomplete
from decimal import Decimal
from typing import Final

from braintree.add_on import AddOn
from braintree.address import Address
from braintree.amex_express_checkout_card import AmexExpressCheckoutCard
from braintree.android_pay_card import AndroidPayCard
from braintree.apple_pay_card import ApplePayCard
from braintree.authorization_adjustment import AuthorizationAdjustment
from braintree.credit_card import CreditCard
from braintree.customer import Customer
from braintree.descriptor import Descriptor
from braintree.disbursement_detail import DisbursementDetail
from braintree.discount import Discount
from braintree.dispute import Dispute
from braintree.europe_bank_account import EuropeBankAccount
from braintree.facilitated_details import FacilitatedDetails
from braintree.facilitator_details import FacilitatorDetails
from braintree.local_payment import LocalPayment
from braintree.masterpass_card import MasterpassCard
from braintree.meta_checkout_card import MetaCheckoutCard
from braintree.meta_checkout_token import MetaCheckoutToken
from braintree.package_details import PackageDetails
from braintree.paypal_account import PayPalAccount
from braintree.paypal_here import PayPalHere
from braintree.resource import Resource
from braintree.risk_data import RiskData
from braintree.samsung_pay_card import SamsungPayCard
from braintree.sepa_direct_debit_account import SepaDirectDebitAccount
from braintree.status_event import StatusEvent
from braintree.subscription_details import SubscriptionDetails
from braintree.three_d_secure_info import ThreeDSecureInfo
from braintree.us_bank_account import UsBankAccount
from braintree.venmo_account import VenmoAccount
from braintree.visa_checkout_card import VisaCheckoutCard

class Transaction(Resource):
    class CreatedUsing:
        FullInformation: Final = "full_information"
        Token: Final = "token"

    class GatewayRejectionReason:
        ApplicationIncomplete: Final = "application_incomplete"
        Avs: Final = "avs"
        AvsAndCvv: Final = "avs_and_cvv"
        Cvv: Final = "cvv"
        Duplicate: Final = "duplicate"
        ExcessiveRetry: Final = "excessive_retry"
        Fraud: Final = "fraud"
        RiskThreshold: Final = "risk_threshold"
        ThreeDSecure: Final = "three_d_secure"
        TokenIssuance: Final = "token_issuance"

    class ReasonCode:
        ANY_REASON_CODE: Final = "any_reason_code"

    class Source:
        Api: Final = "api"
        ControlPanel: Final = "control_panel"
        Recurring: Final = "recurring"

    class EscrowStatus:
        HoldPending: Final = "hold_pending"
        Held: Final = "held"
        ReleasePending: Final = "release_pending"
        Released: Final = "released"
        Refunded: Final = "refunded"

    class Status:
        AuthorizationExpired: Final = "authorization_expired"
        Authorized: Final = "authorized"
        Authorizing: Final = "authorizing"
        Failed: Final = "failed"
        GatewayRejected: Final = "gateway_rejected"
        ProcessorDeclined: Final = "processor_declined"
        Settled: Final = "settled"
        SettlementConfirmed: Final = "settlement_confirmed"
        SettlementDeclined: Final = "settlement_declined"
        SettlementFailed: Final = "settlement_failed"
        SettlementPending: Final = "settlement_pending"
        Settling: Final = "settling"
        SubmittedForSettlement: Final = "submitted_for_settlement"
        Voided: Final = "voided"

    class Type:
        Credit: Final = "credit"
        Sale: Final = "sale"

    class IndustryType:
        Lodging: Final = "lodging"
        TravelAndCruise: Final = "travel_cruise"
        TravelAndFlight: Final = "travel_flight"

    class AdditionalCharge:
        Restaurant: Final = "restaurant"
        GiftShop: Final = "gift_shop"
        MiniBar: Final = "mini_bar"
        Telephone: Final = "telephone"
        Laundry: Final = "laundry"
        Other: Final = "other"

    @staticmethod
    def adjust_authorization(transaction_id, amount): ...
    @staticmethod
    def clone_transaction(transaction_id, params): ...
    @staticmethod
    def cancel_release(transaction_id): ...
    @staticmethod
    def credit(params: Incomplete | None = None): ...
    @staticmethod
    def find(transaction_id): ...
    @staticmethod
    def hold_in_escrow(transaction_id): ...
    @staticmethod
    def refund(transaction_id, amount_or_options: Incomplete | None = None): ...
    @staticmethod
    def sale(params: Incomplete | None = None): ...
    @staticmethod
    def search(*query): ...
    @staticmethod
    def release_from_escrow(transaction_id): ...
    @staticmethod
    def submit_for_settlement(transaction_id, amount: Incomplete | None = None, params: Incomplete | None = None): ...
    @staticmethod
    def update_details(transaction_id, params: Incomplete | None = None): ...
    @staticmethod
    def void(transaction_id): ...
    @staticmethod
    def create(params): ...
    @staticmethod
    def clone_signature(): ...
    @staticmethod
    def create_signature(): ...
    @staticmethod
    def submit_for_settlement_signature(): ...
    @staticmethod
    def submit_for_partial_settlement_signature(): ...
    @staticmethod
    def package_tracking_signature(): ...
    @staticmethod
    def package_tracking(transaction_id, params: Incomplete | None = None): ...
    @staticmethod
    def update_details_signature(): ...
    @staticmethod
    def refund_signature(): ...
    @staticmethod
    def submit_for_partial_settlement(transaction_id, amount, params: Incomplete | None = None): ...
    amount: Decimal
    tax_amount: Decimal | None
    discount_amount: Decimal | None
    shipping_amount: Decimal | None
    billing_details: Address
    credit_card_details: CreditCard
    packages: list[PackageDetails]
    paypal_details: PayPalAccount
    paypal_here_details: PayPalHere
    local_payment_details: LocalPayment
    sepa_direct_debit_account_details: SepaDirectDebitAccount
    europe_bank_account_details: EuropeBankAccount
    us_bank_account: UsBankAccount
    apple_pay_details: ApplePayCard
    android_pay_card_details: AndroidPayCard
    amex_express_checkout_card_details: AmexExpressCheckoutCard
    venmo_account_details: VenmoAccount
    visa_checkout_card_details: VisaCheckoutCard
    masterpass_card_details: MasterpassCard
    samsung_pay_card_details: SamsungPayCard
    meta_checkout_card_details: MetaCheckoutCard
    meta_checkout_token_details: MetaCheckoutToken
    sca_exemption_requested: Incomplete
    customer_details: Customer
    shipping_details: Address
    add_ons: list[AddOn]
    discounts: list[Discount]
    status_history: list[StatusEvent]
    subscription_details: SubscriptionDetails
    descriptor: Descriptor
    disbursement_details: DisbursementDetail
    disputes: list[Dispute]
    authorization_adjustments: list[AuthorizationAdjustment]
    payment_instrument_type: Incomplete
    risk_data: RiskData | None
    three_d_secure_info: ThreeDSecureInfo | None
    facilitated_details: FacilitatedDetails
    facilitator_details: FacilitatorDetails
    network_transaction_id: Incomplete
    def __init__(self, gateway, attributes) -> None: ...
    @property
    def vault_billing_address(self): ...
    @property
    def vault_credit_card(self): ...
    @property
    def vault_customer(self): ...
    @property
    def is_disbursed(self): ...
    @property
    def line_items(self): ...

Filemanager

Name Type Size Permission Actions
dispute_details Folder 0755
exceptions Folder 0755
merchant_account Folder 0755
test Folder 0755
util Folder 0755
__init__.pyi File 5.86 KB 0644
account_updater_daily_report.pyi File 230 B 0644
ach_mandate.pyi File 126 B 0644
add_on.pyi File 113 B 0644
add_on_gateway.pyi File 169 B 0644
address.pyi File 822 B 0644
address_gateway.pyi File 393 B 0644
amex_express_checkout_card.pyi File 274 B 0644
android_pay_card.pyi File 557 B 0644
apple_pay_card.pyi File 560 B 0644
apple_pay_gateway.pyi File 275 B 0644
apple_pay_options.pyi File 100 B 0644
attribute_getter.pyi File 365 B 0644
authorization_adjustment.pyi File 208 B 0644
bin_data.pyi File 92 B 0644
blik_alias.pyi File 72 B 0644
braintree_gateway.pyi File 3.13 KB 0644
client_token.pyi File 214 B 0644
client_token_gateway.pyi File 214 B 0644
configuration.pyi File 1.42 KB 0644
connected_merchant_paypal_status_changed.pyi File 197 B 0644
connected_merchant_status_transitioned.pyi File 196 B 0644
credentials_parser.pyi File 560 B 0644
credit_card.pyi File 2.56 KB 0644
credit_card_gateway.pyi File 577 B 0644
credit_card_verification.pyi File 1.04 KB 0644
credit_card_verification_gateway.pyi File 272 B 0644
credit_card_verification_search.pyi File 639 B 0644
customer.pyi File 1.79 KB 0644
customer_gateway.pyi File 464 B 0644
customer_search.pyi File 1.09 KB 0644
descriptor.pyi File 126 B 0644
disbursement.pyi File 465 B 0644
disbursement_detail.pyi File 310 B 0644
discount.pyi File 116 B 0644
discount_gateway.pyi File 172 B 0644
dispute.pyi File 2.65 KB 0644
dispute_gateway.pyi File 555 B 0644
dispute_search.pyi File 987 B 0644
document_upload.pyi File 382 B 0644
document_upload_gateway.pyi File 215 B 0644
enriched_customer_data.pyi File 199 B 0644
environment.pyi File 1.17 KB 0644
error_codes.pyi File 37.55 KB 0644
error_result.pyi File 600 B 0644
errors.pyi File 313 B 0644
europe_bank_account.pyi File 243 B 0644
exchange_rate_quote.pyi File 146 B 0644
exchange_rate_quote_gateway.pyi File 312 B 0644
exchange_rate_quote_input.pyi File 280 B 0644
exchange_rate_quote_payload.pyi File 161 B 0644
exchange_rate_quote_request.pyi File 226 B 0644
facilitated_details.pyi File 103 B 0644
facilitator_details.pyi File 103 B 0644
granted_payment_instrument_update.pyi File 217 B 0644
iban_bank_account.pyi File 78 B 0644
ids_search.pyi File 95 B 0644
liability_shift.pyi File 99 B 0644
local_payment.pyi File 75 B 0644
local_payment_completed.pyi File 212 B 0644
local_payment_expired.pyi File 135 B 0644
local_payment_funded.pyi File 196 B 0644
local_payment_reversed.pyi File 136 B 0644
masterpass_card.pyi File 386 B 0644
merchant.pyi File 224 B 0644
merchant_account_gateway.pyi File 438 B 0644
merchant_gateway.pyi File 183 B 0644
meta_checkout_card.pyi File 228 B 0644
meta_checkout_token.pyi File 229 B 0644
modification.pyi File 177 B 0644
montary_amount.pyi File 198 B 0644
oauth_access_revocation.pyi File 128 B 0644
oauth_credentials.pyi File 79 B 0644
oauth_gateway.pyi File 351 B 0644
package_details.pyi File 209 B 0644
paginated_collection.pyi File 247 B 0644
paginated_result.pyi File 214 B 0644
partner_merchant.pyi File 334 B 0644
payment_instrument_type.pyi File 818 B 0644
payment_method.pyi File 596 B 0644
payment_method_customer_data_updated_metadata.pyi File 260 B 0644
payment_method_gateway.pyi File 564 B 0644
payment_method_nonce.pyi File 505 B 0644
payment_method_nonce_gateway.pyi File 265 B 0644
payment_method_parser.pyi File 51 B 0644
paypal_account.pyi File 504 B 0644
paypal_account_gateway.pyi File 330 B 0644
paypal_here.pyi File 126 B 0644
plan.pyi File 635 B 0644
plan_gateway.pyi File 330 B 0644
processor_response_types.pyi File 173 B 0644
py.typed File 0 B 0644
resource.pyi File 308 B 0644
resource_collection.pyi File 384 B 0644
revoked_payment_method_metadata.pyi File 267 B 0644
risk_data.pyi File 137 B 0644
samsung_pay_card.pyi File 386 B 0644
search.pyi File 1.85 KB 0644
sepa_direct_debit_account.pyi File 364 B 0644
sepa_direct_debit_account_gateway.pyi File 279 B 0644
settlement_batch_summary.pyi File 221 B 0644
settlement_batch_summary_gateway.pyi File 257 B 0644
signature_service.pyi File 235 B 0644
status_event.pyi File 176 B 0644
subscription.pyi File 1.65 KB 0644
subscription_details.pyi File 104 B 0644
subscription_gateway.pyi File 528 B 0644
subscription_search.pyi File 602 B 0644
subscription_status_event.pyi File 208 B 0644
successful_result.pyi File 141 B 0644
testing_gateway.pyi File 626 B 0644
three_d_secure_info.pyi File 101 B 0644
transaction.pyi File 7.29 KB 0644
transaction_amounts.pyi File 179 B 0644
transaction_details.pyi File 203 B 0644
transaction_gateway.pyi File 1.11 KB 0644
transaction_line_item.pyi File 311 B 0644
transaction_line_item_gateway.pyi File 204 B 0644
transaction_review.pyi File 124 B 0644
transaction_search.pyi File 3.27 KB 0644
unknown_payment_method.pyi File 108 B 0644
us_bank_account.pyi File 486 B 0644
us_bank_account_gateway.pyi File 201 B 0644
us_bank_account_verification.pyi File 1.08 KB 0644
us_bank_account_verification_gateway.pyi File 317 B 0644
us_bank_account_verification_search.pyi File 604 B 0644
validation_error.pyi File 100 B 0644
validation_error_collection.pyi File 516 B 0644
venmo_account.pyi File 214 B 0644
venmo_profile_data.pyi File 132 B 0644
version.pyi File 46 B 0644
visa_checkout_card.pyi File 491 B 0644
webhook_notification.pyi File 5.33 KB 0644
webhook_notification_gateway.pyi File 259 B 0644
webhook_testing.pyi File 163 B 0644
webhook_testing_gateway.pyi File 250 B 0644
Filemanager