@paysafe/paysafe-wallet-saas-web
    Preparing search index...

    Interface UserRestriction

    Represents a restriction.

    Restrictions forbid certain user operations in the wallet. Determine the restricted action based on the restriction name. Check the requiredActions field to determine the course of action for resolving the restrictions.

    interface UserRestriction {
        activationTime?: string;
        dueDate?: string;
        id: string;
        lastChangedDate?: string;
        name: UserRestrictionName;
        requiredActions?: RestrictionAction[];
    }
    Index

    Properties

    activationTime?: string

    Activation time of the restriction.

    Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

    "2021-07-15T17:54:12Z"
    
    dueDate?: string

    Due date of the restriction.

    Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

    "2021-07-15T17:54:12Z"
    
    id: string

    Restriction id.

    lastChangedDate?: string

    Date of the last change in the restriction. Format must be ISO 8601 in UTC. Represents an RFC 3339, section 5.6 date-time.

    "2024-05-08T14:43:33Z"
    

    The name of the user restriction.

    requiredActions?: RestrictionAction[]

    Actions to be completed in order to resolve the restriction.