Class: EasyLabs::Resources::DunningConfig
- Inherits:
-
Base
- Object
- Base
- EasyLabs::Resources::DunningConfig
show all
- Defined in:
- lib/easylabs/resources/dunning_config.rb
Instance Method Summary
collapse
Methods inherited from Base
#initialize
Instance Method Details
#create_or_replace(**body) ⇒ Object
8
9
10
|
# File 'lib/easylabs/resources/dunning_config.rb', line 8
def create_or_replace(**body)
request(:post, "/dunning-config", body: body)
end
|
#retrieve ⇒ Object
12
13
14
|
# File 'lib/easylabs/resources/dunning_config.rb', line 12
def retrieve
request(:get, "/dunning-config")
end
|
#update(**body) ⇒ Object
16
17
18
|
# File 'lib/easylabs/resources/dunning_config.rb', line 16
def update(**body)
request(:patch, "/dunning-config", body: body)
end
|