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

com.testfabrik.webmate.javasdk.WebmateAuthInfo Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
package com.testfabrik.webmate.javasdk;

/**
 * Contains authentication information of an API user.
 */
public class WebmateAuthInfo {
    public final String emailAddress;

    public final String apiKey;

    public WebmateAuthInfo(String emailAddress, String apiKey) {
        this.emailAddress = emailAddress;
        this.apiKey = apiKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy