BillingPortalSessionFlow class final

Information about a specific flow for the customer to go through. See the [docs](https://stripe.com/docs/customer-management/portal-deep-links) to learn more about using customer portal deep links and flows.

Constructors

BillingPortalSessionFlow({required PortalFlowsFlowAfterCompletion afterCompletion, BillingPortalSessionFlowSubscriptionCancel? subscriptionCancel, BillingPortalSessionFlowSubscriptionUpdate? subscriptionUpdate, BillingPortalSessionFlowSubscriptionUpdateConfirm? subscriptionUpdateConfirm, required BillingPortalSessionFlowType type})
Information about a specific flow for the customer to go through. See the [docs](https://stripe.com/docs/customer-management/portal-deep-links) to learn more about using customer portal deep links and flows.
const
BillingPortalSessionFlow.fromJson(Object? json)
factory

Properties

afterCompletion PortalFlowsFlowAfterCompletion
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
subscriptionCancel BillingPortalSessionFlowSubscriptionCancel?
Configuration when `flow.type=subscription_cancel`.
final
subscriptionUpdate BillingPortalSessionFlowSubscriptionUpdate?
Configuration when `flow.type=subscription_update`.
final
subscriptionUpdateConfirm BillingPortalSessionFlowSubscriptionUpdateConfirm?
Configuration when `flow.type=subscription_update_confirm`.
final
type BillingPortalSessionFlowType
final

Methods

encodeWith<V>(Encoder<V> encoder) → V
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object?>
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

encode<V>(BillingPortalSessionFlow instance, Encoder<V> encoder) → V