module Castle::ClientActions::Lists
Client
actions for lists
Public Instance Methods
create_list(options = {})
click to toggle source
@param options [Hash]
# File lib/castle/client_actions/lists.rb, line 9 def create_list(options = {}) Castle::API::Lists::Create.call(options) end
delete_list(options = {})
click to toggle source
@param options [Hash]
# File lib/castle/client_actions/lists.rb, line 14 def delete_list(options = {}) Castle::API::Lists::Delete.call(options) end
get_all_lists(options = {})
click to toggle source
@param options [Hash]
# File lib/castle/client_actions/lists.rb, line 19 def get_all_lists(options = {}) Castle::API::Lists::GetAll.call(options) end
get_list(options = {})
click to toggle source
@param options [Hash]
# File lib/castle/client_actions/lists.rb, line 24 def get_list(options = {}) Castle::API::Lists::Get.call(options) end
query_lists(options = {})
click to toggle source
@param options [Hash]
# File lib/castle/client_actions/lists.rb, line 29 def query_lists(options = {}) Castle::API::Lists::Query.call(options) end
update_list(options = {})
click to toggle source
@param options [Hash]
# File lib/castle/client_actions/lists.rb, line 34 def update_list(options = {}) Castle::API::Lists::Update.call(options) end