PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wiloke-listing-tools
/
vendor
/
stripe
/
stripe-php
/
lib
<?php namespace Stripe; use Countable; /** * Class AttachedObject * * e.g. metadata on Stripe objects. * * @package Stripe */ class AttachedObject extends StripeObject implements Countable { /** * Updates this object. * * @param array $properties A mapping of properties to update on this object. */ public function replaceWith($properties) { $removed = array_diff(array_keys($this->_values), array_keys($properties)); // Don't unset, but rather set to null so we send up '' for deletion. foreach ($removed as $k) { $this->$k = null; } foreach ($properties as $k => $v) { $this->$k = $v; } } /** * Counts the number of elements in the AttachedObject instance. * * @return int the number of elements */ public function count() { return count($this->_values); } }
[+]
..
[-] Payout.php
[edit]
[-] TaxId.php
[edit]
[-] Refund.php
[edit]
[-] Person.php
[edit]
[-] SubscriptionItem.php
[edit]
[-] SubscriptionSchedule.php
[edit]
[-] Order.php
[edit]
[+]
Issuing
[-] IssuerFraudRecord.php
[edit]
[-] BitcoinReceiver.php
[edit]
[+]
Reporting
[-] Dispute.php
[edit]
[-] UsageRecordSummary.php
[edit]
[-] BankAccount.php
[edit]
[-] CustomerBalanceTransaction.php
[edit]
[-] Charge.php
[edit]
[-] Source.php
[edit]
[-] Discount.php
[edit]
[-] Subscription.php
[edit]
[-] FileUpload.php
[edit]
[-] LoginLink.php
[edit]
[-] BitcoinTransaction.php
[edit]
[-] CreditNote.php
[edit]
[-] Balance.php
[edit]
[+]
Error
[-] File.php
[edit]
[+]
Terminal
[+]
ApiOperations
[-] Capability.php
[edit]
[-] ThreeDSecure.php
[edit]
[-] PaymentMethod.php
[edit]
[-] OAuth.php
[edit]
[-] WebhookSignature.php
[edit]
[-] JsonSerializable.php
[edit]
[-] SingletonApiResource.php
[edit]
[-] ApplicationFeeRefund.php
[edit]
[-] Token.php
[edit]
[-] Account.php
[edit]
[-] Event.php
[edit]
[-] AccountLink.php
[edit]
[-] Recipient.php
[edit]
[-] Customer.php
[edit]
[-] UsageRecord.php
[edit]
[-] Collection.php
[edit]
[-] ApiResource.php
[edit]
[-] SKU.php
[edit]
[-] EphemeralKey.php
[edit]
[-] RequestTelemetry.php
[edit]
[-] SetupIntent.php
[edit]
[-] ApplicationFee.php
[edit]
[-] StripeObject.php
[edit]
[-] ApplePayDomain.php
[edit]
[-] TransferReversal.php
[edit]
[-] FileLink.php
[edit]
[+]
Radar
[-] Card.php
[edit]
[-] AlipayAccount.php
[edit]
[-] CountrySpec.php
[edit]
[-] Coupon.php
[edit]
[-] Stripe.php
[edit]
[-] Webhook.php
[edit]
[+]
Sigma
[-] PaymentIntent.php
[edit]
[-] Transfer.php
[edit]
[+]
HttpClient
[-] Invoice.php
[edit]
[-] ApiRequestor.php
[edit]
[-] Plan.php
[edit]
[-] ExternalAccount.php
[edit]
[-] SourceTransaction.php
[edit]
[+]
Util
[-] Product.php
[edit]
[-] OrderReturn.php
[edit]
[-] InvoiceLineItem.php
[edit]
[-] ExchangeRate.php
[edit]
[-] BalanceTransaction.php
[edit]
[-] InvoiceItem.php
[edit]
[-] WebhookEndpoint.php
[edit]
[-] Review.php
[edit]
[-] RecipientTransfer.php
[edit]
[-] Topup.php
[edit]
[-] AttachedObject.php
[edit]
[-] TaxRate.php
[edit]
[+]
Checkout
[-] OrderItem.php
[edit]
[-] ApiResponse.php
[edit]