SubscriptionModel class abstract

JSON shape of rows from the public.subscriptions table.

Available extensions
Annotations

Constructors

SubscriptionModel({required String id, String? targetUserId, String? targetOrgId, required String source, String? externalId, required String plan, required String status, DateTime? currentPeriodStart, DateTime? currentPeriodEnd, @Default(false) bool cancelAtPeriodEnd, int? seats, @Default(<String, dynamic>{}) Map<String, dynamic> metadata, required DateTime createdAt, required DateTime updatedAt})
const
factory
SubscriptionModel.fromJson(Map<String, dynamic> json)
factory

Properties

cancelAtPeriodEnd bool
no setterinherited
copyWith → $SubscriptionModelCopyWith<SubscriptionModel>
Create a copy of SubscriptionModel with the given fields replaced by the non-null parameter values.
no setterinherited
createdAt DateTime
no setterinherited
currentPeriodEnd DateTime?
no setterinherited
currentPeriodStart DateTime?
no setterinherited
externalId String?
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
id String
no setterinherited
metadata Map<String, dynamic>
no setterinherited
plan String
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
seats int?
no setterinherited
source String
no setterinherited
status String
no setterinherited
targetOrgId String?
no setterinherited
targetUserId String?
no setterinherited
updatedAt DateTime
no setterinherited

Methods

map<TResult extends Object?>(TResult $default(_SubscriptionModel value)) → TResult

Available on SubscriptionModel, provided by the SubscriptionModelPatterns extension

A switch-like method, using callbacks.
mapOrNull<TResult extends Object?>(TResult? $default(_SubscriptionModel value)?) → TResult?

Available on SubscriptionModel, provided by the SubscriptionModelPatterns extension

A variant of map that fallback to returning null.
maybeMap<TResult extends Object?>(TResult $default(_SubscriptionModel value)?, {required TResult orElse()}) → TResult

Available on SubscriptionModel, provided by the SubscriptionModelPatterns extension

A variant of map that fallback to returning orElse.
maybeWhen<TResult extends Object?>(TResult $default(String id, String? targetUserId, String? targetOrgId, String source, String? externalId, String plan, String status, DateTime? currentPeriodStart, DateTime? currentPeriodEnd, bool cancelAtPeriodEnd, int? seats, Map<String, dynamic> metadata, DateTime createdAt, DateTime updatedAt)?, {required TResult orElse()}) → TResult

Available on SubscriptionModel, provided by the SubscriptionModelPatterns extension

A variant of when that fallback to an orElse callback.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toEntity() Subscription
toJson() Map<String, dynamic>
Serializes this SubscriptionModel to a JSON map.
inherited
toString() String
A string representation of this object.
inherited
when<TResult extends Object?>(TResult $default(String id, String? targetUserId, String? targetOrgId, String source, String? externalId, String plan, String status, DateTime? currentPeriodStart, DateTime? currentPeriodEnd, bool cancelAtPeriodEnd, int? seats, Map<String, dynamic> metadata, DateTime createdAt, DateTime updatedAt)) → TResult

Available on SubscriptionModel, provided by the SubscriptionModelPatterns extension

A switch-like method, using callbacks.
whenOrNull<TResult extends Object?>(TResult? $default(String id, String? targetUserId, String? targetOrgId, String source, String? externalId, String plan, String status, DateTime? currentPeriodStart, DateTime? currentPeriodEnd, bool cancelAtPeriodEnd, int? seats, Map<String, dynamic> metadata, DateTime createdAt, DateTime updatedAt)?) → TResult?

Available on SubscriptionModel, provided by the SubscriptionModelPatterns extension

A variant of when that fallback to returning null

Operators

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