struct
PostsDownloader::Post
- PostsDownloader::Post
- Struct
- Value
- Object
Included Modules
- BSON::Serializable
- JSON::Serializable
- JSON::Serializable::Strict
- YAML::Serializable
Defined in:
posts-downloader/providers/tipeee/news.crConstructors
- .new(provider_id : String, provider : PostsDownloader::Providers, url : URI, title : String, description : String, published_at : Time, updated_at : Union(Time, Nil), medias : Set(PostsDownloader::Media), external_medias : Set(URI), links : Set(URI), tags : Set(String))
- .new(tipeee_post : PostsDownloader::Tipeee::NewsItem, author : String, lang : String)
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : JSON::PullParser)
-
.new(bson : BSON)
Allocate an instance and copies data from a BSON struct.
Class Method Summary
-
.from_bson(bson : BSON)
NOTE See
self.new.
Instance Method Summary
- #[](value : String)
- #description : String
- #external_medias : Set(URI)
- #links : Set(URI)
- #medias : Set(PostsDownloader::Media)
- #provider : PostsDownloader::Providers
- #provider_id : String
- #published_at : Time
- #tags : Set(String)
- #title : String
-
#to_bson(bson = BSON.new)
Converts to a BSON representation.
- #updated_at : Union(Time, Nil)
- #url : URI
Constructor Detail
def self.new(provider_id : String, provider : PostsDownloader::Providers, url : URI, title : String, description : String, published_at : Time, updated_at : Union(Time, Nil), medias : Set(PostsDownloader::Media), external_medias : Set(URI), links : Set(URI), tags : Set(String))
#
def self.new(tipeee_post : PostsDownloader::Tipeee::NewsItem, author : String, lang : String)
#
def self.new(bson : BSON)
#
Allocate an instance and copies data from a BSON struct.
class User
include BSON::Serializable
property name : String
end
data = BSON.new
data["name"] = "John"
User.new(data)
Class Method Detail
Instance Method Detail
def to_bson(bson = BSON.new)
#
Converts to a BSON representation.
user = User.new name: "John"
bson = user.to_bson