Class Meta
A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
Inherited Members
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class Meta
Properties
Created
Declaration
[JsonProperty(PropertyName = "created")]
public string Created { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The DateTime the Resource was added to the Service Provider
|
LastModified
Declaration
[JsonProperty(PropertyName = "lastModified")]
public string LastModified { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
|
Location
Declaration
[JsonProperty(PropertyName = "location")]
public string Location { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
|
ResourceType
Declaration
[JsonProperty(PropertyName = "resourceType")]
public string ResourceType { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Name of the resource type of the resource--for example, Users or Groups
|
Version
Declaration
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
|