C# 클래스 PodioAPI.Services.ViewService

파일 보기 프로젝트 열기: podio/podio-dotnet

공개 메소드들

메소드 설명
CreateView ( int appId, ViewCreateUpdateRequest request ) : Task

Creates a new view on the given app.

Podio API Reference: https://developers.podio.com/doc/views/create-view-27453

DeleteView ( int viewId ) : Task

Deletes the given view.

Podio API Reference: https://developers.podio.com/doc/views/delete-view-27454

GetView ( int appId, string viewIdOrName ) : Task

Returns the definition for the given view. The view can be either a view id, a standard view or "last" for the last view used.

Podio API Reference: https://developers.podio.com/doc/views/get-view-27450

GetViews ( int appId, bool includeStandardViews = false ) : Task>

Returns the views on the given app.

Podio API Reference: https://developers.podio.com/doc/views/get-views-27460

UpdateLastView ( int appId, ViewCreateUpdateRequest request ) : Task

Updates the last view for the active user.

Podio API Reference: https://developers.podio.com/doc/views/update-last-view-5988251

UpdateView ( int viewId, ViewCreateUpdateRequest request ) : Task

Updates the given view.

Podio API Reference: https://developers.podio.com/doc/views/update-view-20069949

ViewService ( Podio currentInstance ) : System.Collections.Generic

메소드 상세

CreateView() 공개 메소드

Creates a new view on the given app.

Podio API Reference: https://developers.podio.com/doc/views/create-view-27453

public CreateView ( int appId, ViewCreateUpdateRequest request ) : Task
appId int
request PodioAPI.Models.Request.ViewCreateUpdateRequest
리턴 Task

DeleteView() 공개 메소드

Deletes the given view.

Podio API Reference: https://developers.podio.com/doc/views/delete-view-27454

public DeleteView ( int viewId ) : Task
viewId int
리턴 Task

GetView() 공개 메소드

Returns the definition for the given view. The view can be either a view id, a standard view or "last" for the last view used.

Podio API Reference: https://developers.podio.com/doc/views/get-view-27450

public GetView ( int appId, string viewIdOrName ) : Task
appId int
viewIdOrName string
리턴 Task

GetViews() 공개 메소드

Returns the views on the given app.

Podio API Reference: https://developers.podio.com/doc/views/get-views-27460

public GetViews ( int appId, bool includeStandardViews = false ) : Task>
appId int
includeStandardViews bool True if standard views should be included, false otherwise. Default value: false
리턴 Task>

UpdateLastView() 공개 메소드

Updates the last view for the active user.

Podio API Reference: https://developers.podio.com/doc/views/update-last-view-5988251

public UpdateLastView ( int appId, ViewCreateUpdateRequest request ) : Task
appId int
request PodioAPI.Models.Request.ViewCreateUpdateRequest
리턴 Task

UpdateView() 공개 메소드

Updates the given view.

Podio API Reference: https://developers.podio.com/doc/views/update-view-20069949

public UpdateView ( int viewId, ViewCreateUpdateRequest request ) : Task
viewId int
request PodioAPI.Models.Request.ViewCreateUpdateRequest
리턴 Task

ViewService() 공개 메소드

public ViewService ( Podio currentInstance ) : System.Collections.Generic
currentInstance Podio
리턴 System.Collections.Generic