Struct google_drive2::Property[][src]

pub struct Property {
    pub self_link: Option<String>,
    pub kind: Option<String>,
    pub etag: Option<String>,
    pub visibility: Option<String>,
    pub key: Option<String>,
    pub value: Option<String>,
}

A key-value pair attached to a file that is either public or private to an application. The following limits apply to file properties:

  • Maximum of 100 properties total per file
  • Maximum of 30 private properties per app
  • Maximum of 30 public properties
  • Maximum of 124 bytes size limit on (key + value) string in UTF-8 encoding for a single property.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The link back to this property.

This is always drive#property.

ETag of the property.

The visibility of this property.

The key of this property.

The value of this property.

Trait Implementations

impl Default for Property
[src]

Returns the "default value" for a type. Read more

impl Clone for Property
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Property
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Property
[src]

impl ResponseResult for Property
[src]

Auto Trait Implementations

impl Send for Property

impl Sync for Property