Class: Phrase::AccountsApi
- Inherits:
-
Object
- Object
- Phrase::AccountsApi
- Defined in:
- lib/phrase/api/accounts_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#account_show(id, opts = {}) ⇒ AccountDetails
Get a single account Get details on a single account.
-
#account_show_with_http_info(id, opts = {}) ⇒ Array<(Response<(AccountDetails)>, Integer, Hash)>
Get a single account Get details on a single account.
-
#accounts_list(opts = {}) ⇒ Array<Account>
List accounts List all accounts the current user has access to.
-
#accounts_list_with_http_info(opts = {}) ⇒ Array<(Response<(Array<Account>)>, Integer, Hash)>
List accounts List all accounts the current user has access to.
-
#initialize(api_client = ApiClient.default) ⇒ AccountsApi
constructor
A new instance of AccountsApi.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ AccountsApi
Returns a new instance of AccountsApi.
7 8 9 |
# File 'lib/phrase/api/accounts_api.rb', line 7 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
5 6 7 |
# File 'lib/phrase/api/accounts_api.rb', line 5 def api_client @api_client end |
Instance Method Details
#account_show(id, opts = {}) ⇒ AccountDetails
Get a single account Get details on a single account.
16 17 18 19 |
# File 'lib/phrase/api/accounts_api.rb', line 16 def account_show(id, opts = {}) data, _status_code, _headers = account_show_with_http_info(id, opts) data end |
#account_show_with_http_info(id, opts = {}) ⇒ Array<(Response<(AccountDetails)>, Integer, Hash)>
Get a single account Get details on a single account.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/phrase/api/accounts_api.rb', line 27 def account_show_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AccountsApi.account_show ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling AccountsApi.account_show" end # resource path local_var_path = '/accounts/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) header_params[:'X-PhraseApp-OTP'] = opts[:'x_phrase_app_otp'] if !opts[:'x_phrase_app_otp'].nil? # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] # return_type return_type = opts[:return_type] || 'AccountDetails' # auth_names auth_names = opts[:auth_names] || ['Basic', 'Token'] = opts.merge( :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AccountsApi#account_show\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end response = ::Phrase::Response.new(data, headers) return response, status_code, headers end |
#accounts_list(opts = {}) ⇒ Array<Account>
List accounts List all accounts the current user has access to.
83 84 85 86 |
# File 'lib/phrase/api/accounts_api.rb', line 83 def accounts_list(opts = {}) data, _status_code, _headers = accounts_list_with_http_info(opts) data end |
#accounts_list_with_http_info(opts = {}) ⇒ Array<(Response<(Array<Account>)>, Integer, Hash)>
List accounts List all accounts the current user has access to.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/phrase/api/accounts_api.rb', line 95 def accounts_list_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AccountsApi.accounts_list ...' end # resource path local_var_path = '/accounts' # query parameters query_params = opts[:query_params] || {} query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil? query_params[:'per_page'] = opts[:'per_page'] if !opts[:'per_page'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) header_params[:'X-PhraseApp-OTP'] = opts[:'x_phrase_app_otp'] if !opts[:'x_phrase_app_otp'].nil? # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] # return_type return_type = opts[:return_type] || 'Array<Account>' # auth_names auth_names = opts[:auth_names] || ['Basic', 'Token'] = opts.merge( :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AccountsApi#accounts_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end response = ::Phrase::Response.new(data, headers) return response, status_code, headers end |