Show / Hide Table of Contents

Class AuthenticationFactorSettingsEmailSettings

Settings related to Email Factor, such as enabled email magic link factor, custom url for Email Link
Added In: 20.1.3
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
AuthenticationFactorSettingsEmailSettings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class AuthenticationFactorSettingsEmailSettings

Properties

EmailLinkCustomUrl

Declaration
[JsonProperty(PropertyName = "emailLinkCustomUrl")]
public string EmailLinkCustomUrl { get; set; }
Property Value
Type Description
string

Custom redirect Url which will be used in email link
Added In: 20.1.3
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

EmailLinkEnabled

Declaration
[Required(ErrorMessage = "EmailLinkEnabled is required.")]
[JsonProperty(PropertyName = "emailLinkEnabled")]
public bool? EmailLinkEnabled { get; set; }
Property Value
Type Description
bool?

Specifies whether Email link is enabled or not.
Added In: 20.1.3
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: boolean
  • uniqueness: none
Remarks

Required

In this article
Back to top