SubscriptionUserDetails

The SubscriptionUserDetails interface represents a paginated list of users within a subscription.

The SubscriptionUserDetails interface defines the structure for a paginated response containing a list of users associated with a subscription, along with the total count of such users.

Interface Definition

export interface SubscriptionUserDetails {
    users: UserDetails[];
    total: number;
}

Properties

PropertyTypeDescription
usersUserDetails[]An array of UserDetails objects, representing the paginated list of users.
totalnumberThe total number of users (active and pending) associated with the subscription.

Last modified August 17, 2025: cloud functions doc (4817130)