package org.onap.ranapp.kafka.model.appmodels; import com.fasterxml.jackson.annotation.JsonProperty; public class PolicytypetoTopicMapping { @JsonProperty("request_topic") private String request_topic; @JsonProperty("response_topic") private String response_topic; @JsonProperty("request_topic") public String getRequest_topic() { return request_topic; } @JsonProperty("request_topic") public void setRequest_topic(String request_topic) { this.request_topic = request_topic; } @JsonProperty("response_topic") public String getResponse_topic() { return response_topic; } @JsonProperty("response_topic") public void setResponse_topic(String response_topic) { this.response_topic = response_topic; } @Override public String toString() { return "PolicytypetoTopicMapping [request_topic=" + request_topic + ", response_topic=" + response_topic + "]"; } }