Interface UpdateTermsOfService

New terms of service must be accepted by the user. If the terms of service are declined, then the deleteAccount method must be called with the reason "Decline ToS update". Subtype of Update.

interface UpdateTermsOfService {
    @type: "updateTermsOfService";
    terms_of_service: TermsOfService;
    terms_of_service_id: string;
}

Properties

@type: "updateTermsOfService"
terms_of_service: TermsOfService

The new terms of service.

terms_of_service_id: string

Identifier of the terms of service.