Struct google_plus1::ActivityObjectAttachments[][src]

pub struct ActivityObjectAttachments {
    pub display_name: Option<String>,
    pub thumbnails: Option<Vec<ActivityObjectAttachmentsThumbnails>>,
    pub full_image: Option<ActivityObjectAttachmentsFullImage>,
    pub url: Option<String>,
    pub image: Option<ActivityObjectAttachmentsImage>,
    pub content: Option<String>,
    pub embed: Option<ActivityObjectAttachmentsEmbed>,
    pub id: Option<String>,
    pub object_type: Option<String>,
}

The media objects attached to this activity.

This type is not used in any activity, and only used as part of another schema.

Fields

The title of the attachment, such as a photo caption or an article title.

If the attachment is an album, this property is a list of potential additional thumbnails from the album.

The full image URL for photo attachments.

The link to the attachment, which should be of type text/html.

The preview image for photos or videos.

If the attachment is an article, this property contains a snippet of text from the article. It can also include descriptions for other types.

If the attachment is a video, the embeddable link.

The ID of the attachment.

The type of media object. Possible values include, but are not limited to, the following values:

  • "photo" - A photo.
  • "album" - A photo album.
  • "video" - A video.
  • "article" - An article, specified by a link.

Trait Implementations

impl Default for ActivityObjectAttachments
[src]

Returns the "default value" for a type. Read more

impl Clone for ActivityObjectAttachments
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ActivityObjectAttachments
[src]

Formats the value using the given formatter. Read more

impl NestedType for ActivityObjectAttachments
[src]

impl Part for ActivityObjectAttachments
[src]

Auto Trait Implementations