Skip to content

Add topic field to ConversationIF #349

@McrsftHater

Description

@McrsftHater

A follow-up to this issue: #205

There is a "topic" field missing in ConversationIF

Suggestion

Add to ConversationIF:

@JsonProperty("topic")
Optional<Topic> getTopic();

Add TopicIF interface:

@HubSpotStyle
@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)
public interface TopicIF {
    @JsonProperty("value")
    Optional<String> getValue();
    @JsonProperty("creator")
    Optional<String> getCreator();
    @JsonProperty("last_set")
    Optional<Long> getLastSet();
}

P.S. There are more fields missing but my project require only this one.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions