import type * as Square from "../index"; /** * Represents a response from a search request containing a filtered list of `TeamMember` objects. */ export interface SearchTeamMembersResponse { /** The filtered list of `TeamMember` objects. */ teamMembers?: Square.TeamMember[]; /** * The opaque cursor for fetching the next page. For more information, see * [pagination](https://developer.squareup.com/docs/working-with-apis/pagination). */ cursor?: string; /** The errors that occurred during the request. */ errors?: Square.Error_[]; }