ApiOperations
7 months ago
Apps
7 months ago
Billing
7 months ago
BillingPortal
7 months ago
Checkout
7 months ago
Climate
7 months ago
Entitlements
7 months ago
EventData
7 months ago
Events
7 months ago
Exception
7 months ago
FinancialConnections
7 months ago
Forwarding
7 months ago
HttpClient
7 months ago
Identity
7 months ago
Issuing
7 months ago
Radar
7 months ago
Reporting
7 months ago
Service
7 months ago
Sigma
7 months ago
Tax
7 months ago
Terminal
7 months ago
TestHelpers
7 months ago
Treasury
7 months ago
Util
7 months ago
V2
7 months ago
Account.php
7 months ago
AccountLink.php
7 months ago
AccountSession.php
7 months ago
ApiRequestor.php
7 months ago
ApiResource.php
7 months ago
ApiResponse.php
7 months ago
ApplePayDomain.php
7 months ago
Application.php
7 months ago
ApplicationFee.php
7 months ago
ApplicationFeeRefund.php
7 months ago
Balance.php
7 months ago
BalanceTransaction.php
7 months ago
BankAccount.php
7 months ago
BaseStripeClient.php
7 months ago
BaseStripeClientInterface.php
7 months ago
Capability.php
7 months ago
Card.php
7 months ago
CashBalance.php
7 months ago
Charge.php
7 months ago
Collection.php
7 months ago
ConfirmationToken.php
7 months ago
ConnectCollectionTransfer.php
7 months ago
CountrySpec.php
7 months ago
Coupon.php
7 months ago
CreditNote.php
7 months ago
CreditNoteLineItem.php
7 months ago
Customer.php
7 months ago
CustomerBalanceTransaction.php
7 months ago
CustomerCashBalanceTransaction.php
7 months ago
CustomerSession.php
7 months ago
Discount.php
7 months ago
Dispute.php
7 months ago
EphemeralKey.php
7 months ago
ErrorObject.php
7 months ago
Event.php
7 months ago
ExchangeRate.php
7 months ago
File.php
7 months ago
FileLink.php
7 months ago
FundingInstructions.php
7 months ago
Invoice.php
7 months ago
InvoiceItem.php
7 months ago
InvoiceLineItem.php
7 months ago
InvoicePayment.php
7 months ago
InvoiceRenderingTemplate.php
7 months ago
LineItem.php
7 months ago
LoginLink.php
7 months ago
Mandate.php
7 months ago
OAuth.php
7 months ago
OAuthErrorObject.php
7 months ago
PaymentIntent.php
7 months ago
PaymentLink.php
7 months ago
PaymentMethod.php
7 months ago
PaymentMethodConfiguration.php
7 months ago
PaymentMethodDomain.php
7 months ago
Payout.php
7 months ago
Person.php
7 months ago
Plan.php
7 months ago
Price.php
7 months ago
Product.php
7 months ago
ProductFeature.php
7 months ago
PromotionCode.php
7 months ago
Quote.php
7 months ago
Reason.php
7 months ago
RecipientTransfer.php
7 months ago
Refund.php
7 months ago
RelatedObject.php
7 months ago
RequestTelemetry.php
7 months ago
ReserveTransaction.php
7 months ago
Review.php
7 months ago
SearchResult.php
7 months ago
SetupAttempt.php
7 months ago
SetupIntent.php
7 months ago
ShippingRate.php
7 months ago
SingletonApiResource.php
7 months ago
Source.php
7 months ago
SourceMandateNotification.php
7 months ago
SourceTransaction.php
7 months ago
Stripe.php
7 months ago
StripeClient.php
7 months ago
StripeClientInterface.php
7 months ago
StripeObject.php
7 months ago
StripeStreamingClientInterface.php
7 months ago
Subscription.php
7 months ago
SubscriptionItem.php
7 months ago
SubscriptionSchedule.php
7 months ago
TaxCode.php
7 months ago
TaxDeductedAtSource.php
7 months ago
TaxId.php
7 months ago
TaxRate.php
7 months ago
ThinEvent.php
7 months ago
Token.php
7 months ago
Topup.php
7 months ago
Transfer.php
7 months ago
TransferReversal.php
7 months ago
Webhook.php
7 months ago
WebhookEndpoint.php
7 months ago
WebhookSignature.php
7 months ago
LoginLink.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | |
| 5 | namespace AmeliaVendor\Stripe; |
| 6 | |
| 7 | /** |
| 8 | * Login Links are single-use URLs that takes an Express account to the login page for their Stripe dashboard. |
| 9 | * A Login Link differs from an <a href="https://stripe.com/docs/api/account_links">Account Link</a> in that it takes the user directly to their <a href="https://stripe.com/docs/connect/integrate-express-dashboard#create-login-link">Express dashboard for the specified account</a>. |
| 10 | * |
| 11 | * @property string $object String representing the object's type. Objects of the same type share the same value. |
| 12 | * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. |
| 13 | * @property string $url The URL for the login link. |
| 14 | */ |
| 15 | class LoginLink extends ApiResource |
| 16 | { |
| 17 | const OBJECT_NAME = 'login_link'; |
| 18 | } |
| 19 |