Google Apps Script API
    Preparing search index...
    interface SubscriptionsCollection {
        activate(
            customerId: string,
            subscriptionId: string,
        ): GoogleAppsScript.AdminReseller.Schema.Subscription;
        changePlan(
            resource: ChangePlanRequest,
            customerId: string,
            subscriptionId: string,
        ): GoogleAppsScript.AdminReseller.Schema.Subscription;
        changeRenewalSettings(
            resource: RenewalSettings,
            customerId: string,
            subscriptionId: string,
        ): GoogleAppsScript.AdminReseller.Schema.Subscription;
        changeSeats(
            resource: Seats,
            customerId: string,
            subscriptionId: string,
        ): GoogleAppsScript.AdminReseller.Schema.Subscription;
        get(
            customerId: string,
            subscriptionId: string,
        ): GoogleAppsScript.AdminReseller.Schema.Subscription;
        insert(
            resource: GoogleAppsScript.AdminReseller.Schema.Subscription,
            customerId: string,
        ): GoogleAppsScript.AdminReseller.Schema.Subscription;
        insert(
            resource: GoogleAppsScript.AdminReseller.Schema.Subscription,
            customerId: string,
            optionalArgs: object,
        ): GoogleAppsScript.AdminReseller.Schema.Subscription;
        list(): Subscriptions;
        list(optionalArgs: object): Subscriptions;
        remove(
            customerId: string,
            subscriptionId: string,
            deletionType: string,
        ): void;
        startPaidService(
            customerId: string,
            subscriptionId: string,
        ): GoogleAppsScript.AdminReseller.Schema.Subscription;
        suspend(
            customerId: string,
            subscriptionId: string,
        ): GoogleAppsScript.AdminReseller.Schema.Subscription;
    }
    Index

    Methods