Class CreateEntityTypeRequest


  • public abstract class CreateEntityTypeRequest
    extends Object
    • Constructor Detail

      • CreateEntityTypeRequest

        public CreateEntityTypeRequest()
    • Method Detail

      • getId

        @Nullable
        @CheckForNull
        public abstract String getId()
      • getLabel

        @Valid
        @NotNull
        public abstract @Valid @NotNull I18nValue getLabel()
      • getDescription

        @Nullable
        @CheckForNull
        public abstract I18nValue getDescription()
      • getAbstract

        @Nullable
        @CheckForNull
        @SerializedName("abstract")
        public abstract Boolean getAbstract()
      • getPackage

        @Nullable
        @CheckForNull
        @SerializedName("package")
        public abstract String getPackage()
      • getExtends

        @Nullable
        @CheckForNull
        @SerializedName("extends")
        public abstract String getExtends()
      • getAttributes

        @Valid
        @NotEmpty
        public abstract @Valid @NotEmpty com.google.common.collect.ImmutableList<CreateAttributeRequest> getAttributes()