@runloop/api-client - v1.26.0
    Preparing search index...

    Interface AccountView

    Account information.

    interface AccountView {
        id: string;
        account_status:
            | "ACCOUNT_STATUS_INVALID"
            | "ACCOUNT_STATUS_ONBOARDING"
            | "ACCOUNT_STATUS_ENABLED"
            | "ACCOUNT_STATUS_DISABLED_BY_ADMIN"
            | "ACCOUNT_STATUS_DISABLED_QUOTA_REACHED"
            | "ACCOUNT_STATUS_TRIAL_CANCELLED"
            | "ACCOUNT_STATUS_STRIPE_PENDING_RESOURCES"
            | "UNRECOGNIZED";
        billing: Runloop.AccountView.Billing;
        created_at: string;
        name: string;
        tier: | "UNRECOGNIZED"
        | "ACCOUNT_TIER_INVALID"
        | "ACCOUNT_TIER_BASIC"
        | "ACCOUNT_TIER_PRO"
        | "ACCOUNT_TIER_ENTERPRISE"
        | "ACCOUNT_TIER_TRIAL";
        account_billing_type?: | "UNRECOGNIZED"
        | "STRIPE"
        | "AWS_MARKETPLACE"
        | "STRIPE_PROJECTS";
        active_subscription?: string
        | null;
        external_billing_account_id?: string | null;
        stripe_customer_id?: string | null;
    }
    Index

    Properties

    id: string

    The account ID.

    account_status:
        | "ACCOUNT_STATUS_INVALID"
        | "ACCOUNT_STATUS_ONBOARDING"
        | "ACCOUNT_STATUS_ENABLED"
        | "ACCOUNT_STATUS_DISABLED_BY_ADMIN"
        | "ACCOUNT_STATUS_DISABLED_QUOTA_REACHED"
        | "ACCOUNT_STATUS_TRIAL_CANCELLED"
        | "ACCOUNT_STATUS_STRIPE_PENDING_RESOURCES"
        | "UNRECOGNIZED"

    The account status.

    The account billing information.

    created_at: string

    The account creation timestamp.

    name: string

    The account name.

    tier:
        | "UNRECOGNIZED"
        | "ACCOUNT_TIER_INVALID"
        | "ACCOUNT_TIER_BASIC"
        | "ACCOUNT_TIER_PRO"
        | "ACCOUNT_TIER_ENTERPRISE"
        | "ACCOUNT_TIER_TRIAL"

    The account tier.

    account_billing_type?:
        | "UNRECOGNIZED"
        | "STRIPE"
        | "AWS_MARKETPLACE"
        | "STRIPE_PROJECTS"

    Deprecated: use billing.account_billing_type.

    active_subscription?: string | null

    Deprecated: use billing.stripe.active_subscription.

    external_billing_account_id?: string | null

    Deprecated: use billing.aws.customer_identifier.

    stripe_customer_id?: string | null

    Deprecated: use billing.stripe.customer_id.