AddCustomLoginPolicyRequest_IDP constructor

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

Implementation

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