getsocial-react-native-sdk
Version:
React Native wrapper for GetSocial iOS and Android SDK
22 lines (18 loc) • 448 B
JavaScript
/* eslint-disable max-len */
// @flow
import MediaAttachment from './../MediaAttachment.js';
/**
* PollOptionContent object.
*/
export default class PollOptionContent {
optionId: ?string;
text: ?string;
attachment: ?MediaAttachment;
/**
* Generates JSON string.
* @return {string} object as json.
*/
toJSON() {
return {attachment: this.attachment ?? null, optionId: this.optionId ?? null, text: this.text ?? null};
}
}