Show / Hide Table of Contents

Class ListAuthorizedCertificatesResponse

Response message for AuthorizedCertificates.ListAuthorizedCertificates.

Inheritance
System.Object
ListAuthorizedCertificatesResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Appengine.v1beta.Data
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class ListAuthorizedCertificatesResponse : IDirectResponseSchema

Properties

Certificates

The SSL certificates the user is authorized to administer.

Declaration
[JsonProperty("certificates")]
public virtual IList<AuthorizedCertificate> Certificates { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<AuthorizedCertificate>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

NextPageToken

Continuation token for fetching the next page of results.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top