ComplianceSetUserInfoWithBirthday
AndroidiOSWindows
If you were looking for the method for use with Unity, see ComplianceSetUserInfoWithBirthday for Unity SDK.
If you were looking for the method for use with Unity, see ComplianceSetUserInfoWithBirthday for Unity SDK.
Set region and birthday in the compliance process.
Function definition
UFUNCTION(BlueprintCallable, Category = "INTLSDKAPI")
static void ComplianceSetUserInfoWithBirthday(
const FString Region,
const int32 BirthdayYear = 0,
const int32 BirthdayMonth = 0,
const int32 BirthdayDay = 0);
Input parameters
Parameter | Type | Description |
---|---|---|
Region | FString | ISO 3166-1 numeric code for country or region For example 156 for China, 040 for Austria |
BirthdayYear | int32 | Year of birth |
BirthdayMonth | int32 | Month of birth |
BirthdayDay | int32 | Day of birth |
Observers
The callback processing interface is ComplianceResultObserver. The callback data structure is ComplianceResult.
The callback methodID is kMethodIDComplianceSetUserInfoWithBirthday
.
Code sample
UINTLSDKAPI::ComplianceSetUserInfoWithBirthday("040",2000,1,1);