TelefonTypeDto.java
package no.nav.nom.graphql.model;
@javax.annotation.processing.Generated(
value = "com.kobylynskyi.graphql.codegen.GraphQLCodegen",
date = "2026-03-30T10:02:45+0000"
)
public enum TelefonTypeDto {
NAV_TJENESTE_TELEFON("NAV_TJENESTE_TELEFON"),
NAV_KONTOR_TELEFON("NAV_KONTOR_TELEFON"),
PRIVAT_TELEFON("PRIVAT_TELEFON");
private final String graphqlName;
private TelefonTypeDto(String graphqlName) {
this.graphqlName = graphqlName;
}
@Override
public String toString() {
return this.graphqlName;
}
}