Struct google_digitalassetlinks1::CheckResponse[][src]

pub struct CheckResponse {
    pub error_code: Option<Vec<String>>,
    pub max_age: Option<String>,
    pub linked: Option<bool>,
    pub debug_string: Option<String>,
}

Response message for the CheckAssetLinks call.

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

Error codes that describe the result of the Check operation.

From serving time, how much longer the response should be considered valid barring further updates. REQUIRED

Set to true if the assets specified in the request are linked by the relation specified in the request.

Human-readable message containing information intended to help end users understand, reproduce and debug the result.

The message will be in English and we are currently not planning to offer any translations.

Please note that no guarantees are made about the contents or format of this string. Any aspect of it may be subject to change without notice. You should not attempt to programmatically parse this data. For programmatic access, use the error_code field below.

Trait Implementations

impl Default for CheckResponse
[src]

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

impl Clone for CheckResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CheckResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for CheckResponse
[src]

Auto Trait Implementations