PHP Class Instagram\API\Response\FollowingFriendshipResponse

Inheritance: extends BaseResponse
Show file Open project: liamcottle/instagram-sdk-php

Protected Properties

Property Type Description
$next_max_id string Next Maximum Id
$page_size integer Page Size
$sections Instagram\API\Response\Model\FollowingSection[] Follower Sections

Public Methods

Method Description
getFollowers ( ) : User[] Get Followers by iterating over all Sections
getNextMaxId ( ) : string
getPageSize ( ) : integer
getSections ( ) : FollowingSection[]
setNextMaxId ( string $next_max_id )
setPageSize ( integer $page_size )
setSections ( FollowingSection[] $sections )

Method Details

getFollowers() public method

Get Followers by iterating over all Sections
public getFollowers ( ) : User[]
return Instagram\API\Response\Model\User[]

getNextMaxId() public method

public getNextMaxId ( ) : string
return string

getPageSize() public method

public getPageSize ( ) : integer
return integer

getSections() public method

public getSections ( ) : FollowingSection[]
return Instagram\API\Response\Model\FollowingSection[]

setNextMaxId() public method

public setNextMaxId ( string $next_max_id )
$next_max_id string

setPageSize() public method

public setPageSize ( integer $page_size )
$page_size integer

setSections() public method

public setSections ( FollowingSection[] $sections )
$sections Instagram\API\Response\Model\FollowingSection[]

Property Details

$next_max_id protected property

Next Maximum Id
protected string $next_max_id
return string

$page_size protected property

Page Size
protected int $page_size
return integer

$sections protected property

Follower Sections
protected FollowingSection[],Instagram\API\Response\Model $sections
return Instagram\API\Response\Model\FollowingSection[]