> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PFStatisticsGetStatisticsResponse

> Reference for the PFStatisticsGetStatisticsResponse struct in the PlayFab Services C API, returning an entity's statistic values and column details.

PFStatisticsGetStatisticsResponse data model.

## Syntax

```cpp theme={null}
typedef struct PFStatisticsGetStatisticsResponse {  
    PFStatisticsStatisticColumnCollectionDictionaryEntry const* columnDetails;  
    uint32_t columnDetailsCount;  
    PFEntityKey const* entity;  
    PFStatisticsEntityStatisticValueDictionaryEntry const* statistics;  
    uint32_t statisticsCount;  
} PFStatisticsGetStatisticsResponse;  
```

### Members

**`columnDetails`**   PFStatisticsStatisticColumnCollectionDictionaryEntry const\*<br />*may be nullptr*

(Optional) A mapping of statistic name to the columns defined in the corresponding definition.

**`columnDetailsCount`**   uint32\_t

Count of columnDetails

**`entity`**   [PFEntityKey](/services/playfab/api-references/c/pftypes/structs/pfentitykey-c) const\*<br />*may be nullptr*

(Optional) The entity id and type.

**`statistics`**   PFStatisticsEntityStatisticValueDictionaryEntry const\*<br />*may be nullptr*

(Optional) List of statistics keyed by Name. Only the latest version of a statistic is returned.

**`statisticsCount`**   uint32\_t

Count of statistics

## Requirements

**Header:** PFStatisticsTypes.h

## See also

[PFStatisticsTypes members](/services/playfab/api-references/c/pfstatisticstypes/pfstatisticstypes_members)


## Related topics

- [PFStatisticsGetStatisticsGetResult](/services/playfab/api-references/c/pfstatistics/functions/pfstatisticsgetstatisticsgetresult.md)
- [Services C API overview - PFStatisticsTypes.h](/services/playfab/api-references/c/pfstatisticstypes/pfstatisticstypes_members.md)
- [PFStatisticsGetStatisticsForEntitiesResponse](/services/playfab/api-references/c/pfstatisticstypes/structs/pfstatisticsgetstatisticsforentitiesresponse.md)
- [PFStatisticsGetStatisticDefinitionResponse](/services/playfab/api-references/c/pfstatisticstypes/structs/pfstatisticsgetstatisticdefinitionresponse.md)
- [PFStatisticsUpdateStatisticsResponse](/services/playfab/api-references/c/pfstatisticstypes/structs/pfstatisticsupdatestatisticsresponse.md)
