C# Class PodioAPI.Services.RecurrenceService

Afficher le fichier Open project: podio/podio-dotnet

Méthodes publiques

Méthode 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 méthode

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
Résultat Task

GetRecurrence() public méthode

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
Résultat Task

RecurrenceService() public méthode

public RecurrenceService ( Podio currentInstance ) : PodioAPI.Models
currentInstance Podio
Résultat PodioAPI.Models

UpdateRecurrence() public méthode

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
Résultat Task