in okta/FactorsAdminClient.py [0:0]
def activate_org_factor(self, org_factor_id, org_auth_factor=None):
"""Activate OrgAuthFactor
:param org_factor_id: target factor id
:type org_factor_id: str
:param org_auth_factor: additional factor data
:param org_auth_factor: OrgAuthFactor
:rtype: OrgAuthFactor
"""
response = ApiClient.post_path(self, '/factors/{0}/lifecycle/activate'.format(org_factor_id), org_auth_factor)
return Utils.deserialize(response.text, OrgAuthFactor)