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
= { "fields": "title" }
@data = @mints_user.get_stages()
166 167 168 |
# File 'lib/user/content/content.rb', line 166 def get_stages( = nil) return @client.raw("get", "/content/stages", ) end |