com.quotemedia.streamer.client.mapper.NewsMsgImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of streamerclient-java-core Show documentation
Show all versions of streamerclient-java-core Show documentation
Java streaming client that provides easy-to-use client APIs to connect and subscribe to QuoteMedia's market data streaming services. https://quotemedia.com/
The newest version!
package com.quotemedia.streamer.client.mapper;
import com.quotemedia.streamer.messages.market.DataMessage;
public class NewsMsgImpl implements DataMessage {
private Long storyId;
private Long timestamp;
private String storyUrl;
private Long epochtime;
private String headline;
private String qmSummary;
private String source;
private String sourceId;
private String lang;
private String symbol;
private String excode;
private String exgroup;
private String topic;
private String thumbnailUrl;
private String newsUrl;
private String videoUrl;
private String videoImageUrl;
public Long getStoryId() {
return storyId;
}
public void setStoryId(Long storyId) {
this.storyId = storyId;
}
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getStoryUrl() {
return storyUrl;
}
public void setStoryUrl(String storyUrl) {
this.storyUrl = storyUrl;
}
public Long getEpochtime() {
return epochtime;
}
public void setEpochtime(Long epochtime) {
this.epochtime = epochtime;
}
public String getHeadline() {
return headline;
}
public void setHeadline(String headline) {
this.headline = headline;
}
public String getQmSummary() {
return qmSummary;
}
public void setQmSummary(String qmSummary) {
this.qmSummary = qmSummary;
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public String getSourceId() {
return sourceId;
}
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
}
public String getLang() {
return lang;
}
public void setLang(String lang) {
this.lang = lang;
}
public String getSymbol() {
return symbol;
}
public void setSymbol(String symbol) {
this.symbol = symbol;
}
public String getExcode() {
return excode;
}
public void setExcode(String excode) {
this.excode = excode;
}
public String getExgroup() {
return exgroup;
}
public void setExgroup(String exgroup) {
this.exgroup = exgroup;
}
public String getTopic() {
return topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getThumbnailUrl() {
return thumbnailUrl;
}
public void setThumbnailUrl(String thumbnailUrl) {
this.thumbnailUrl = thumbnailUrl;
}
public String getNewsUrl() {
return newsUrl;
}
public void setNewsUrl(String newsUrl) {
this.newsUrl = newsUrl;
}
public String getVideoUrl() {
return videoUrl;
}
public void setVideoUrl(String videoUrl) {
this.videoUrl = videoUrl;
}
public String getVideoImageUrl() {
return videoImageUrl;
}
public void setVideoImageUrl(String videoImageUrl) {
this.videoImageUrl = videoImageUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy