com.zipwhip.api.response.KeyValuePair Maven / Gradle / Ivy
package com.zipwhip.api.response;
/**
* @author Michael
* @Deprecated use com.zipwhip.util.KeyValuePair
*/
@Deprecated
public class KeyValuePair {
public T0 key;
public T1 value;
KeyValuePair(T0 key, T1 value) {
this.key = key;
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy