Module: Calendars
- Included in:
- Config
- Defined in:
- lib/user/config/calendars.rb
Instance Method Summary collapse
-
#create_calendar(data) ⇒ Object
Create calendar.
-
#delete_calendar(id) ⇒ Object
Delete calendar.
-
#get_calendar(id, options = nil) ⇒ Object
Get calendar.
-
#get_calendars(options = nil) ⇒ Object
Get calendars.
-
#update_calendar(id, data) ⇒ Object
Update calendar.
Instance Method Details
#create_calendar(data) ⇒ Object
Create calendar.
Create a calendar with data.
Parameters
- data
-
(Hash) – Data to be submitted.
Example
data = {
title: 'New Calendar',
object_type: 'contacts',
object_id: 1
}
@data = @mints_user.create_calendar(data)
58 59 60 |
# File 'lib/user/config/calendars.rb', line 58 def create_calendar(data) @client.raw('post', '/config/calendars', nil, data_transform(data)) end |
#delete_calendar(id) ⇒ Object
Delete calendar.
Delete a calendar.
Parameters
- id
-
(Integer) – Calendar id.
Example
@data = @mints_user.delete_calendar(4)
88 89 90 |
# File 'lib/user/config/calendars.rb', line 88 def delete_calendar(id) @client.raw('delete', "/config/calendars/#{id}") end |
#get_calendar(id, options = nil) ⇒ Object
Get calendar.
Get a calendar info.
Parameters
- id
-
(Integer) – Calendar id.
- options
-
(Hash) – List of Resource Collection Options shown above can be used as parameter.
First Example
@data = @mints_user.get_calendar(1)
Second Example
= {
fields: 'title'
}
@data = @mints_user.get_calendar(1, )
41 42 43 |
# File 'lib/user/config/calendars.rb', line 41 def get_calendar(id, = nil) @client.raw('get', "/config/calendars/#{id}", ) end |
#get_calendars(options = nil) ⇒ Object
Get calendars.
Get a collection of calendars.
Parameters
- options
-
(Hash) – List of Resource Collection Options shown above can be used as parameter.
First Example
@data = @mints_user.get_calendars
Second Example
= {
fields: 'title'
}
@data = @mints_user.get_calendars()
22 23 24 |
# File 'lib/user/config/calendars.rb', line 22 def get_calendars( = nil) @client.raw('get', '/config/calendars', ) end |
#update_calendar(id, data) ⇒ Object
Update calendar.
Update a calendar info.
Parameters
- id
-
(Integer) – Calendar id.
- data
-
(Hash) – Data to be submitted.
Example
data = {
title: 'New Calendar Modified',
object_type: 'contacts',
object_id: 1
}
@data = @mints_user.update_calendar(4, data)
76 77 78 |
# File 'lib/user/config/calendars.rb', line 76 def update_calendar(id, data) @client.raw('put', "/config/calendars/#{id}", nil, data_transform(data)) end |