/** * The argument object for [[ContractApi.getContractMapValuesByFirstKey]] * * @module core */ export interface GetContractMapValuesByFirstKeyArgs { /** * The id of the contract */ contractId: string; /** * The first key of the mapping tuple. */ key1: string; }