update

fun Collections.update(    id: String,     name: String? = null,     description: String? = null,     url: String? = null,     vararg options: Option): JsonObjectApiAction<Collection.Model>

Update information concerning a Collection owned by the currently authenticated user. Partial updates are not currently supported: please provide name, description, and url whenever using this method. Omitted description or url parameters will be treated as if an empty string was passed, overwriting any previously stored value for the Collection.

Twitter API reference

Receiver

Collections endpoint instance.

Return

JsonObjectApiAction for Collection.Model model.

Parameters

id

The identifier of the Collection to modify.

name

The title of the Collection being created, in 25 characters or fewer.

description

A brief description of this Collection in 160 characters or fewer.

url

A fully-qualified URL to associate with this Collection.

options

Optional. Custom parameters of this request.