plaid2.model.identity_verification_retry_request_steps_object module

class plaid2.model.identity_verification_retry_request_steps_object.IdentityVerificationRetryRequestStepsObject(*, documentary_verification: bool, selfie_check: bool, verify_sms: bool, kyc_check: bool)[source]

Bases: BaseModel

dict(**kwargs: Any) Dict[str, Any][source]

Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict

documentary_verification: bool

A boolean field specifying whether the new session should require or skip the documentary_verification step.

json(**kwargs: Any) str[source]

Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json

kyc_check: bool

A boolean field specifying whether the new session should require or skip the kyc_check step.

classmethod parse_obj(data: Any) IdentityVerificationRetryRequestStepsObject[source]

Parse a dict into the object. Takes same keyword arguments as pydantic.BaseModel.parse_obj

classmethod parse_raw(b: Union[bytes, str], **kwargs: Any) IdentityVerificationRetryRequestStepsObject[source]

Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw

selfie_check: bool

A boolean field specifying whether the new session should require or skip the selfie_check step.

verify_sms: bool

A boolean field specifying whether the new session should require or skip the verify_sms step.