@namespace("Switchboard") protocol LawyerAddress { /** The main class for this protocol */ record LawyerAddress { /** The LawyerAddress's id */ int id; /** The lawyer's id */ int lawyer_id; /** The first line of the address */ string line1; /** The second line of the address */ string line2; /** The city of the address */ string city; /** The state abbreviation of the address */ string state_code; /** The postal code of the address */ string postal_code; } /** Look up many adddresses in bulk */ array index(int lawyer_id, string lawyer_ids); }