C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
StoredAPIResource.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Runtime.Serialization;
5
6namespace AnalyzeRe.APITypes
7{
10 {
12 [DataMember(Order = 3)]
13 [NotEmpty]
14 public string description { get; set; }
15
17 [DataMember(Order = 4)]
19 public DateTime? created { get; set; }
20
22 [DataMember(Order = 5)]
24 public DateTime? modified { get; set; }
25
27 [DataMember(Order = 6)]
28 [PropertyAlias("metadata")]
31 }
32}
Base class used by all resources.
Describes a collection of resources which can be listed.
Base class used by all persistent resources.
string description
A user-friendly description of the resource.
Dictionary< string, object > meta_data
Any user-defined metadata for this layer.
DateTime? created
The date and time when the resource was created on the system.
DateTime? modified
The date and time when the resource was last modified on the system.
Specifies one or more aliases to be used as synonyms for the property's name.
Specifies that a property is generated by the server and should not be specified on the client side d...
Indicates that the property, if left null, will be given a default value by the server corresponding ...
Interface for Base class used by all stored resources.