Google Apps Script API
    Preparing search index...
    interface OrgunitsCollection {
        get(customerId: string, orgUnitPath: string[]): OrgUnit;
        insert(resource: OrgUnit, customerId: string): OrgUnit;
        list(customerId: string): OrgUnits;
        list(customerId: string, optionalArgs: object): OrgUnits;
        patch(
            resource: OrgUnit,
            customerId: string,
            orgUnitPath: string[],
        ): OrgUnit;
        remove(customerId: string, orgUnitPath: string[]): void;
        update(
            resource: OrgUnit,
            customerId: string,
            orgUnitPath: string[],
        ): OrgUnit;
    }
    Index

    Methods