Method | Description | |
---|---|---|
AlbumService ( IApiProvider provider ) : System | ||
Create ( string title, string description = "", bool hide = false, int userId = null ) : int? | ||
Delete ( int albumId ) : bool |
Delete an album given an id
|
|
Get ( int albumId ) : |
Returns a single album not depending on whether it's hidden or not
|
|
GetList ( ) : List |
Returns a list of albums by default parameters
|
|
GetList ( |
Returns a list of albums by specific parameters
|
|
Update ( int albumId, string title, string description = "", bool hide = false ) : bool |
public AlbumService ( IApiProvider provider ) : System | ||
provider | IApiProvider | |
return | System |
public Create ( string title, string description = "", bool hide = false, int userId = null ) : int? | ||
title | string | |
description | string | |
hide | bool | |
userId | int | |
return | int? |
public GetList ( |
||
requestParameters | ||
return | List |
public Update ( int albumId, string title, string description = "", bool hide = false ) : bool | ||
albumId | int | |
title | string | |
description | string | |
hide | bool | |
return | bool |