Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 1.63 KB

File metadata and controls

46 lines (40 loc) · 1.63 KB

Zernio::GetInboxPostComments200ResponsePost

Properties

Name Type Description Notes
id String Reddit post base36 id (e.g. "1tjtj26") [optional]
fullname String Fullname with type prefix (e.g. "t3_1tjtj26") [optional]
title String [optional]
selftext String Body text for self-posts (empty for link posts) [optional]
author String Reddit username, without the u/ prefix [optional]
subreddit String Subreddit name, without the r/ prefix [optional]
permalink String Absolute URL to the post on reddit.com [optional]
url String For link posts, the external URL; for self-posts, the Reddit permalink [optional]
score Integer Net upvotes (upvotes minus downvotes) [optional]
num_comments Integer [optional]
created_utc Integer Unix timestamp in seconds [optional]
over18 Boolean [optional]
stickied Boolean [optional]
flair_text String Link flair text if any [optional]
is_gallery Boolean True if the post is a Reddit gallery (multiple images) [optional]

Example

require 'zernio-sdk'

instance = Zernio::GetInboxPostComments200ResponsePost.new(
  id: null,
  fullname: null,
  title: null,
  selftext: null,
  author: null,
  subreddit: null,
  permalink: null,
  url: null,
  score: null,
  num_comments: null,
  created_utc: null,
  over18: null,
  stickied: null,
  flair_text: null,
  is_gallery: null
)