C# 클래스 Foretagsplatsen.Api.Resources.KeyFigureDataResource

Key figure data REST resource: https://web.foretagsplatsen.se/Api/KeyFigureData/{businessIdentityCode}/{fiscalYearId}/
파일 보기 프로젝트 열기: foretagsplatsen/Foretagsplatsen-DotNet-API

공개 메소드들

메소드 설명
Delete ( string fiscalYearId ) : void

Deletes all key figure data for a company and a fiscal year.

GetUrl ( string fiscalYearId ) : string

Url for the key figure data resource.

KeyFigureDataResource ( ApiClient client, CompanyInfo company ) : System.Collections.Generic

Instantiates a new KeyFigureDataResource object.

KeyFigureDataResource ( ApiClient client, string businessIdentityCode ) : System.Collections.Generic

Instantiates a new KeyFigureDataResource object.

List ( string fiscalYearId ) : List

Lists all key figure data for a company and a fiscal year.

Update ( string fiscalYearId, List keyFigureDatas ) : void

Updates the key figure data for a company and a fiscal year. If no data exists it will be created.

Update ( string fiscalYearId, string keyFigureDataJson ) : void

Updates the key figure data for a company and a fiscal year. If no data exists it will be created.

메소드 상세

Delete() 공개 메소드

Deletes all key figure data for a company and a fiscal year.
public Delete ( string fiscalYearId ) : void
fiscalYearId string Identifier for fiscal year to delete key figure data for.
리턴 void

GetUrl() 공개 메소드

Url for the key figure data resource.
public GetUrl ( string fiscalYearId ) : string
fiscalYearId string Identifier for fiscal year.
리턴 string

KeyFigureDataResource() 공개 메소드

Instantiates a new KeyFigureDataResource object.
public KeyFigureDataResource ( ApiClient client, CompanyInfo company ) : System.Collections.Generic
client ApiClient REST client
company Foretagsplatsen.Api.Entities.CompanyInfo Company
리턴 System.Collections.Generic

KeyFigureDataResource() 공개 메소드

Instantiates a new KeyFigureDataResource object.
public KeyFigureDataResource ( ApiClient client, string businessIdentityCode ) : System.Collections.Generic
client ApiClient REST client
businessIdentityCode string Business identity code for company.
리턴 System.Collections.Generic

List() 공개 메소드

Lists all key figure data for a company and a fiscal year.
public List ( string fiscalYearId ) : List
fiscalYearId string Identifier for fiscal year.
리턴 List

Update() 공개 메소드

Updates the key figure data for a company and a fiscal year. If no data exists it will be created.
public Update ( string fiscalYearId, List keyFigureDatas ) : void
fiscalYearId string Identifier for fiscal year.
keyFigureDatas List The list of key figure data to upload.
리턴 void

Update() 공개 메소드

Updates the key figure data for a company and a fiscal year. If no data exists it will be created.
public Update ( string fiscalYearId, string keyFigureDataJson ) : void
fiscalYearId string Identifier for fiscal year.
keyFigureDataJson string The JSON list of key figure data to upload.
리턴 void