C# Класс LoginRadiusSDK.Entity.LoginRadiusCloudStorageEntity

Наследование: LoginRadiusV2EntityBase
Показать файл Открыть проект

Открытые методы

Метод Описание
GetQueryAggregationData ( string from, string to, string firstDatapoint, string statsType ) : LoginRadiusQueryDataModel

This API is used to query the aggregation data from your LoginRadius cloud storage.

GetUserList ( string select, string from, string where, string orderBy, string skip, string limit ) : List

This API allows you to query your LoginRadius Cloud Storage and retrieve up to 20 user records.

Описание методов

GetQueryAggregationData() публичный Метод

This API is used to query the aggregation data from your LoginRadius cloud storage.
public GetQueryAggregationData ( string from, string to, string firstDatapoint, string statsType ) : LoginRadiusQueryDataModel
from string From Date in format of (mm/dd/yyyy).
to string To Date in format of (mm/dd/yyyy).
firstDatapoint string Aggregation Field, supported are: os, browser, device, country, city, provider, emailType, friendsCount
statsType string Type of users should apply to i.e. NewUser, ActiveUser, Login
Результат LoginRadiusSDK.Models.CloudStorageModel.LoginRadiusQueryDataModel

GetUserList() публичный Метод

This API allows you to query your LoginRadius Cloud Storage and retrieve up to 20 user records.
public GetUserList ( string select, string from, string where, string orderBy, string skip, string limit ) : List
select string Fields included in the Query, default all fields, Optional: can be null or empty string
from string LoginRadius Table that details are being retrieved from, for now users only supported
where string Filter for data based on condition,Optional: can be null or empty string
orderBy string Determines ascending order of returned data,Optional: can be null or empty string
skip string Ignores the specified amount of values used to page through responses, value must be positive and default value is 0, Optional: can be null or empty string
limit string Determines size of dataset returned. default value is 20 and max value is 20, Optional: can be null or empty string
Результат List