Google Apps Script API
    Preparing search index...
    interface GoalsCollection {
        get(
            accountId: string,
            webPropertyId: string,
            profileId: string,
            goalId: string,
        ): Goal;
        insert(
            resource: Goal,
            accountId: string,
            webPropertyId: string,
            profileId: string,
        ): Goal;
        list(accountId: string, webPropertyId: string, profileId: string): Goals;
        list(
            accountId: string,
            webPropertyId: string,
            profileId: string,
            optionalArgs: any,
        ): Goals;
        patch(
            resource: Goal,
            accountId: string,
            webPropertyId: string,
            profileId: string,
            goalId: string,
        ): Goal;
        update(
            resource: Goal,
            accountId: string,
            webPropertyId: string,
            profileId: string,
            goalId: string,
        ): Goal;
    }
    Index

    Methods