com.github.switcherapi.client.model.response.AuthRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of switcher-client Show documentation
Show all versions of switcher-client Show documentation
Switcher Client SDK for working with Switcher API
package com.github.switcherapi.client.model.response;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
/**
* @author Roger Floriano (petruki)
* @since 2019-12-24
*/
@JsonSerialize
public class AuthRequest {
private String domain;
private String component;
private String environment;
public void setDomain(String domain) {
this.domain = domain;
}
public void setComponent(String component) {
this.component = component;
}
public void setEnvironment(String environment) {
this.environment = environment;
}
public String getDomain() {
return domain;
}
public String getComponent() {
return component;
}
public String getEnvironment() {
return environment;
}
@Override
public String toString() {
return "AuthRequest [domain=" + domain + ", component=" + component + ", environment=" + environment + "]";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy