Show / Hide Table of Contents

Class AppsDynamiteStorageCardSection

A section contains a collection of widgets that are rendered vertically in the order that they are specified. Across all platforms, cards have a narrow fixed width, so there is currently no need for layout properties, for example, float.

Inheritance
object
AppsDynamiteStorageCardSection
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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class AppsDynamiteStorageCardSection : IDirectResponseSchema

Properties

Collapsible

Indicates whether this section is collapsible. If a section is collapsible, the description must be given.

Declaration
[JsonProperty("collapsible")]
public virtual bool? Collapsible { get; set; }
Property Value
Type Description
bool?

ETag

The ETag of the item.

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

Header

The header of the section. Formatted text is supported.

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

UncollapsibleWidgetsCount

The number of uncollapsible widgets. For example, when a section contains five widgets and the numUncollapsibleWidget is set to 2, the first two widgets are always shown and the last three are collapsed as default. The numUncollapsibleWidget is taken into account only when collapsible is set to true.

Declaration
[JsonProperty("uncollapsibleWidgetsCount")]
public virtual int? UncollapsibleWidgetsCount { get; set; }
Property Value
Type Description
int?

Widgets

A section must contain at least 1 widget.

Declaration
[JsonProperty("widgets")]
public virtual IList<AppsDynamiteStorageWidget> Widgets { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<T><AppsDynamiteStorageWidget>

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX