C# Class PodioAPI.Services.ReminderService

Mostra file Open project: podio/podio-dotnet

Public Methods

Method Description
DeleteReminder ( string refType, int refId, int reminderId ) : Task

Deletes the reminder, if any, on the given object.

Podio API Reference: https://developers.podio.com/doc/reminders/delete-reminder-3315117

GetReminder ( string refType, int refId ) : Task

Returns the reminder for the given object.

Podio API Reference: https://developers.podio.com/doc/reminders/get-reminder-3415569

ReminderService ( Podio currentInstance ) : System.Threading.Tasks
SnoozeReminder ( string refType, int refId, int reminderId ) : Task

Snoozes the reminder for 10 minutes.

Podio API Reference: https://developers.podio.com/doc/reminders/snooze-reminder-3321049

Update ( string refType, int refId, int remindDelta ) : Task

Creates or updates the reminder on a object. Possible ref_types are: task.

Podio API Reference: https://developers.podio.com/doc/reminders/create-or-update-reminder-3315055

Method Details

DeleteReminder() public method

Deletes the reminder, if any, on the given object.

Podio API Reference: https://developers.podio.com/doc/reminders/delete-reminder-3315117

public DeleteReminder ( string refType, int refId, int reminderId ) : Task
refType string
refId int
reminderId int
return Task

GetReminder() public method

Returns the reminder for the given object.

Podio API Reference: https://developers.podio.com/doc/reminders/get-reminder-3415569

public GetReminder ( string refType, int refId ) : Task
refType string
refId int
return Task

ReminderService() public method

public ReminderService ( Podio currentInstance ) : System.Threading.Tasks
currentInstance Podio
return System.Threading.Tasks

SnoozeReminder() public method

Snoozes the reminder for 10 minutes.

Podio API Reference: https://developers.podio.com/doc/reminders/snooze-reminder-3321049

public SnoozeReminder ( string refType, int refId, int reminderId ) : Task
refType string
refId int
reminderId int
return Task

Update() public method

Creates or updates the reminder on a object. Possible ref_types are: task.

Podio API Reference: https://developers.podio.com/doc/reminders/create-or-update-reminder-3315055

public Update ( string refType, int refId, int remindDelta ) : Task
refType string
refId int
remindDelta int minutes to remind before the due date of the object
return Task