Method: NgrokAPI::Services::ApplicationUsersClient#list!
- Defined in:
- lib/ngrokapi/services/application_users_client.rb
#list!(before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
List all application users for this account. Throws an exception if API error.
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/ngrokapi/services/application_users_client.rb', line 122 def list!(before_id: nil, limit: nil, url: nil) result = @client.list( before_id: before_id, limit: limit, danger: true, url: url, path: PATH ) NgrokAPI::Models::Listable.new( client: self, attrs: result, list_property: LIST_PROPERTY, klass: NgrokAPI::Models::ApplicationUser, danger: true ) end |