Submit consent to EULA

The SDK allows for the host application to Accept/Reject the EULA. The EULA status is obtained by using the UserService to get the User data.

Accept Terms

In order to submit the consent to EULA, the following API can be used.

Concrete example

let service = EULAService()
service.acceptTerms(then: { result in
    switch result {
    case .success:
        // terms accepted
    case .failure:
        // error
})

Last updated