Show / Hide Table of Contents

Class IdentityProviderRelayIdpParamMappings

Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:

  • idcsCompositeKey: [relayParamKey]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
IdentityProviderRelayIdpParamMappings
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 IdentityProviderRelayIdpParamMappings

Properties

RelayParamKey

Declaration
[Required(ErrorMessage = "RelayParamKey is required.")]
[JsonProperty(PropertyName = "relayParamKey")]
public string RelayParamKey { get; set; }
Property Value
Type Description
string

Key or name of the relayParam.
Added In: 2305190132
SCIM++ Properties:

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

Required

RelayParamValue

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

Value of the relayParam (if defined)
Added In: 2305190132
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top