Class: FaithTeams::API::V2::Resource::Base
Overview
Common Resource functionality
Additional methods can be added but the following methods should not be missing
Instance Method Summary
collapse
Methods inherited from GatewayBase
#initialize, #valid_connection?
Instance Method Details
#create(entity:) ⇒ Entity::Base, false
27
28
29
|
# File 'lib/faithteams/api/v2/resource/base.rb', line 27
def create(entity:)
raise NotImplementedError
end
|
#delete(id:) ⇒ Boolean
39
40
41
|
# File 'lib/faithteams/api/v2/resource/base.rb', line 39
def delete(id:)
raise NotImplementedError
end
|
15
16
17
|
# File 'lib/faithteams/api/v2/resource/base.rb', line 15
def find(id:)
raise NotImplementedError
end
|
#search(**args) ⇒ Array<Entity::Base>
21
22
23
|
# File 'lib/faithteams/api/v2/resource/base.rb', line 21
def search(**args)
raise NotImplementedError
end
|
#update(entity:) ⇒ Entity::Base, false
33
34
35
|
# File 'lib/faithteams/api/v2/resource/base.rb', line 33
def update(entity:)
raise NotImplementedError
end
|