Show / Hide Table of Contents

Class Model

An ML model hosted in Firebase ML

Inheritance
object
Model
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.FirebaseML.v1beta2.Data
Assembly: Google.Apis.FirebaseML.v1beta2.dll
Syntax
public class Model : IDirectResponseSchema

Properties

ActiveOperations

Output only. Lists operation ids associated with this model whose status is NOT done.

Declaration
[JsonProperty("activeOperations")]
public virtual IList<Operation> ActiveOperations { get; set; }
Property Value
Type Description
IList<Operation>

CreateTime

object representation of CreateTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CreateTimeDateTimeOffset instead.")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
object

CreateTimeDateTimeOffset

DateTimeOffset representation of CreateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? CreateTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

CreateTimeRaw

Output only. Timestamp when this model was created in Firebase ML.

Declaration
[JsonProperty("createTime")]
public virtual string CreateTimeRaw { get; set; }
Property Value
Type Description
string

DisplayName

Required. The name of the model to create. The name can be up to 32 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscores(_) and ASCII digits 0-9. It must start with a letter.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
string

ETag

Output only. See RFC7232 https://tools.ietf.org/html/rfc7232#section-2.3

Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type Description
string

ModelHash

Output only. The model_hash will change if a new file is available for download.

Declaration
[JsonProperty("modelHash")]
public virtual string ModelHash { get; set; }
Property Value
Type Description
string

Name

The resource name of the Model. Model names have the form projects/{project_id}/models/{model_id} The name is ignored when creating a model.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

State

State common to all model types. Includes publishing and validation information.

Declaration
[JsonProperty("state")]
public virtual ModelState State { get; set; }
Property Value
Type Description
ModelState

Tags

User defined tags which can be used to group/filter models during listing

Declaration
[JsonProperty("tags")]
public virtual IList<string> Tags { get; set; }
Property Value
Type Description
IList<string>

TfliteModel

A TFLite Model

Declaration
[JsonProperty("tfliteModel")]
public virtual TfLiteModel TfliteModel { get; set; }
Property Value
Type Description
TfLiteModel

UpdateTime

object representation of UpdateTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use UpdateTimeDateTimeOffset instead.")]
public virtual object UpdateTime { get; set; }
Property Value
Type Description
object

UpdateTimeDateTimeOffset

DateTimeOffset representation of UpdateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? UpdateTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

UpdateTimeRaw

Output only. Timestamp when this model was updated in Firebase ML.

Declaration
[JsonProperty("updateTime")]
public virtual string UpdateTimeRaw { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX