C# Class PodioAPI.Services.RecurrenceService

Mostra file Open project: podio/podio-dotnet

Public Methods

Method Description
DeleteRecurrence ( string refType, int refId ) : Task

Deletes the recurrence.

Podio API Reference: https://developers.podio.com/doc/recurrence/delete-recurrence-3349970

GetRecurrence ( string refType, int refId ) : Task

Returns the recurrence for the given object

Podio API Reference: https://developers.podio.com/doc/recurrence/get-recurrence-3415545

RecurrenceService ( Podio currentInstance ) : PodioAPI.Models
UpdateRecurrence ( string refType, int refId, Recurrence recurrence ) : Task

Creates or updates recurrence on the object.

Podio API Reference: https://developers.podio.com/doc/recurrence/create-or-update-recurrence-3349957

Method Details

DeleteRecurrence() public method

Deletes the recurrence.

Podio API Reference: https://developers.podio.com/doc/recurrence/delete-recurrence-3349970

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

GetRecurrence() public method

Returns the recurrence for the given object

Podio API Reference: https://developers.podio.com/doc/recurrence/get-recurrence-3415545

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

RecurrenceService() public method

public RecurrenceService ( Podio currentInstance ) : PodioAPI.Models
currentInstance Podio
return PodioAPI.Models

UpdateRecurrence() public method

Creates or updates recurrence on the object.

Podio API Reference: https://developers.podio.com/doc/recurrence/create-or-update-recurrence-3349957

public UpdateRecurrence ( string refType, int refId, Recurrence recurrence ) : Task
refType string
refId int
recurrence PodioAPI.Models.Recurrence
return Task