AddCustomLoginPolicyRequest_IDP constructor

AddCustomLoginPolicyRequest_IDP({
  1. String? idpId,
  2. IDPOwnerType? ownerType,
})

Implementation

factory AddCustomLoginPolicyRequest_IDP({
  $core.String? idpId,
  $10.IDPOwnerType? ownerType,
}) {
  final $result = create();
  if (idpId != null) {
    $result.idpId = idpId;
  }
  if (ownerType != null) {
    $result.ownerType = ownerType;
  }
  return $result;
}