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