File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
compare-comply/src/main/java/com/ibm/watson/compare_comply/v1/model Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright 2018 IBM Corp. All Rights Reserved .
2+ * (C) Copyright IBM Corp. 2019 .
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
55 * the License. You may obtain a copy of the License at
1212 */
1313package com .ibm .watson .compare_comply .v1 .model ;
1414
15+ import java .util .List ;
16+
1517import com .ibm .cloud .sdk .core .service .model .GenericModel ;
1618
1719/**
2022public class KeyValuePair extends GenericModel {
2123
2224 private Key key ;
23- private Value value ;
25+ private List < Value > value ;
2426
2527 /**
2628 * Gets the key.
@@ -36,11 +38,11 @@ public Key getKey() {
3638 /**
3739 * Gets the value.
3840 *
39- * A value in a key-value pair.
41+ * A list of values in a key-value pair.
4042 *
4143 * @return the value
4244 */
43- public Value getValue () {
45+ public List < Value > getValue () {
4446 return value ;
4547 }
4648}
You can’t perform that action at this time.
0 commit comments