Method: Content#get_stages

Defined in:
lib/user/content/content.rb

#get_stages(options = nil) ⇒ Object

Get stages.

Get a collection of stages.

Parameters

options

(Hash) – List of Resource Collection Options shown above can be used as parameter.

First Example

@data = @mints_user.get_stages

Second Example

options = { "fields": "title" }
@data = @mints_user.get_stages(options)


166
167
168
# File 'lib/user/content/content.rb', line 166

def get_stages(options = nil)
    return @client.raw("get", "/content/stages", options)
end