Class ScimValue

Namespace
Kuestenlogik.Bowire.Scim
Assembly
Kuestenlogik.Bowire.Scim.dll

A typed, optionally primary value — e-mail, phone (RFC 7643 §2.4).

public sealed class ScimValue
Inheritance
ScimValue
Inherited Members

Constructors

ScimValue()

public ScimValue()

Properties

Display

Human-readable label. Groups use this for member names.

[JsonPropertyName("display")]
public string? Display { get; set; }

Property Value

string

Primary

Whether this is the preferred entry of its kind.

[JsonPropertyName("primary")]
public bool? Primary { get; set; }

Property Value

bool?

Type

Its type, e.g. work.

[JsonPropertyName("type")]
public string? Type { get; set; }

Property Value

string

Value

The value itself.

[JsonPropertyName("value")]
public string? Value { get; set; }

Property Value

string