com.grafana.foundation.team.Team Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grafana-foundation-sdk Show documentation
Show all versions of grafana-foundation-sdk Show documentation
A set of tools, types and libraries for building and manipulating Grafana objects.
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
package com.grafana.foundation.team;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
public class Team {
// Name of the team.
@JsonProperty("name")
public String name;
// Email of the team.
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@JsonProperty("email")
public String email;
public String toJSON() throws JsonProcessingException {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
return ow.writeValueAsString(this);
}
public static class Builder implements com.grafana.foundation.cog.Builder {
private final Team internal;
public Builder(String name) {
this.internal = new Team();
this.internal.name = name;
}
public Builder name(String name) {
this.internal.name = name;
return this;
}
public Builder email(String email) {
this.internal.email = email;
return this;
}
public Team build() {
return this.internal;
}
}
}