graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/types/input/property/CDPIdentifierPropertyInput.java [33:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                      @GraphQLName("minOccurrences") Integer minOccurrences,
                                      @GraphQLName("maxOccurrences") Integer maxOccurrences,
                                      @GraphQLName("tags") List<String> tags,
                                      @GraphQLName("regexp") String regexp,
                                      @GraphQLName("defaultValue") String defaultValue) {
        super(name, minOccurrences, maxOccurrences, tags);
        this.regexp = regexp;
        this.defaultValue = defaultValue;
    }

    @GraphQLField
    @GraphQLPrettify
    public String getRegexp() {
        return regexp;
    }

    @GraphQLField
    @GraphQLPrettify
    public String getDefaultValue() {
        return defaultValue;
    }

    @Override
    public String getCDPPropertyType() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/types/input/property/CDPStringPropertyInput.java [33:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                  @GraphQLName("minOccurrences") Integer minOccurrences,
                                  @GraphQLName("maxOccurrences") Integer maxOccurrences,
                                  @GraphQLName("tags") List<String> tags,
                                  @GraphQLName("regexp") String regexp,
                                  @GraphQLName("defaultValue") String defaultValue) {
        super(name, minOccurrences, maxOccurrences, tags);
        this.regexp = regexp;
        this.defaultValue = defaultValue;
    }

    @GraphQLField
    @GraphQLPrettify
    public String getRegexp() {
        return regexp;
    }

    @GraphQLField
    @GraphQLPrettify
    public String getDefaultValue() {
        return defaultValue;
    }

    @Override
    public String getCDPPropertyType() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



