All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.callstats.sdk.internal.NameValuePair Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
package io.callstats.sdk.internal;

public class NameValuePair {

  private String name;
  private String value;

  public NameValuePair(String name, String value) {
    this.name = name;
    this.value = value;
  }

  public String getName() {
    return this.name;
  }

  public String getValue() {
    return this.value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy