import type * as Square from "../index"; /** * A response to a request to get a `TeamMemberWage`. The response contains * the requested `TeamMemberWage` objects and might contain a set of `Error` objects if * the request resulted in errors. */ export interface GetTeamMemberWageResponse { /** The requested `TeamMemberWage` object. */ teamMemberWage?: Square.TeamMemberWage; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }