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

org.kohsuke.github.GraphQLExternalIdentityScimAttributes Maven / Gradle / Ivy

package org.kohsuke.github;

import com.fasterxml.jackson.annotation.JsonProperty;

public class GraphQLExternalIdentityScimAttributes {
    @JsonProperty("emails")
    public GraphQLUserEmailMetadata[] emails;

    @JsonProperty("username")
    public String username;

    @JsonProperty("givenName")
    public String givenName;

    @JsonProperty("familyName")
    public String familyName;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy