/*
 * Copyright (c) Microsoft Corporation.
 * Licensed under the MIT License.
 *
 * Code generated by Microsoft (R) AutoRest Code Generator.
 * Changes may cause incorrect behavior and will be lost if the code is regenerated.
 */

import {
  IdentityGetUsersOptionalParams,
  IdentityGetUsersResponse
} from "../models";

/** Interface representing a Identity. */
export interface Identity {
  /**
   * Returns users of a tenant.
   * Returns all users if no searchTerm param is specified.
   * @param ownerName The name of the owner
   * @param appName The name of the application
   * @param options The options parameters.
   */
  getUsers(
    ownerName: string,
    appName: string,
    options?: IdentityGetUsersOptionalParams
  ): Promise<IdentityGetUsersResponse>;
}
