UNPKG

getsocial-react-native-sdk

Version:
22 lines (18 loc) 448 B
/* 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}; } }