Skip to main content

%ZEN.Mobile.RSS.Item

Class %ZEN.Mobile.RSS.Item Extends %Persistent [ Deprecated, System = 3 ]

This represents an individual item in a feed

Parameters

DEFAULTGLOBAL

Parameter DEFAULTGLOBAL = "^ZEN.Mobile.RSS.Item";

Properties

TimeStamp

Property TimeStamp As %TimeStamp [ ReadOnly ];

This is the timestamp when the item was filed

ChannelTitle

Property ChannelTitle As %String [ ReadOnly ];

This is the parent Channel's (feed's) Title

ChannelDescription

Property ChannelDescription As %String [ ReadOnly ];

This is the parent Channel's (feed's) Description

Category

Property Category As %String(MAXLEN = "") [ ReadOnly ];

This is the category of the Item

PubDate

Property PubDate As %String(MAXLEN = "") [ ReadOnly ];

This is the publication date of the Item

Title

Property Title As %String(MAXLEN = "") [ ReadOnly ];

This is the title of the item

Description

Property Description As %String(MAXLEN = "") [ ReadOnly ];

This is the Description of the item

Property Link As %String(MAXLEN = "") [ ReadOnly ];

This is the Link to the full article

ZCRC

Property ZCRC As %String [ ReadOnly ];

Identity

Feed

Relationship Feed As Feed [ Cardinality = parent, Inverse = Items ];

Methods

ChannelTitleGet

Method ChannelTitleGet() As %String [ CodeMode = expression ]

ChannelDescriptionGet

Method ChannelDescriptionGet() As %String [ CodeMode = expression ]

ZCRCGet

Method ZCRCGet() As %String [ CodeMode = expression ]

Getter for ZCRC

%OnNew

Method %OnNew(pCategory As %String, pPubDate As %String, pTitle As %String, pDescription As %String, pLink As %String) As %Status [ Private, ServerOnly = 1 ]