Struct letterboxd::MemberFilmRelationshipsRequest [] [src]

pub struct MemberFilmRelationshipsRequest {
    pub cursor: Option<Cursor>,
    pub per_page: Option<usize>,
    pub sort: Option<MemberFilmRelationshipsRequestSort>,
    pub member: Option<String>,
    pub member_relationship: Option<FilmRelationshipType>,
    pub film_relationship: Option<FilmRelationshipType>,
}

Fields

The pagination cursor.

The number of items to include per page (default is 20, maximum is 100).

Defaults to Date, which has different semantics based on the request: When review is specified, members who most recently liked the review appear first. When list is specified, members who most recently liked the list appear first. When film is specified and filmRelationship=Watched, members who most recently watched the film appear first. When film is specified and filmRelationship=Liked, members who most recently liked the film appear first. When member is specified and memberRelationship=IsFollowing, most recently followed members appear first. When member is specified and memberRelationship=IsFollowedBy, most recent followers appear first. Otherwise, members who most recently joined the site appear first. The PopularWithFriends values are only available to authenticated members and consider popularity amongst the member’s friends.

Specify the LID of a member to return members who follow or are followed by that member.

Must be used in conjunction with member. Defaults to IsFollowing, which returns the list of members followed by the member. Use IsFollowedBy to return the list of members that follow the member.

Must be used in conjunction with film. Defaults to Watched, which returns the list of members who have seen the film. Specify the type of relationship to limit the returned members accordingly.

Trait Implementations

impl Debug for MemberFilmRelationshipsRequest
[src]

[src]

Formats the value using the given formatter.

impl Clone for MemberFilmRelationshipsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for MemberFilmRelationshipsRequest
[src]

[src]

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