Search Results for

    Method GetDailySummary

    GetDailySummary(DateTime, DateTime)

    Gets a summary of the user's daily exercise data for a specified period within the recent 90 days.

    Declaration
    public static YVRRequest<SportDailySummaryList> GetDailySummary(DateTime beginTime, DateTime endTime)
    Parameters
    Type Name Description
    DateTime beginTime

    A DateTime struct defining the begin time of the period. The begin time should be no earlier than 90 days before the current time.

    DateTime endTime

    A DateTime struct defining the end time of the period, .

    Returns
    Type Description
    YVRRequest<SportDailySummaryList>

    GetDailySummary(long, long)

    Gets a summary of the user's daily exercise data for a specified period within the recent 90 days.

    Declaration
    public static YVRRequest<SportDailySummaryList> GetDailySummary(long beginUnixTimeMillisecond, long endUnixTimeMillisecond)
    Parameters
    Type Name Description
    long beginUnixTimeMillisecond

    A unix time in millisecond defining the begin time of the period. The begin time should be no earlier than 90 days before the current time.

    long endUnixTimeMillisecond

    A unix time in millisecond defining the end time of the period, .

    Returns
    Type Description
    YVRRequest<SportDailySummaryList>
    In This Article