Returns the membership Resource.
Returns Series metadata for the given series ids.
get(series_id)
Returns Series metadata for the given series ids.
Args:
series_id: string, String that identifies the series (required) (repeated)
Returns:
An object of the form:
{
"kind": "books#series", # Resource type.
"series": [
{
"bannerImageUrl": "A String",
"eligibleForSubscription": True or False,
"imageUrl": "A String",
"isComplete": True or False,
"seriesFormatType": "A String",
"seriesId": "A String",
"seriesSubscriptionReleaseInfo": {
"cancellationTimestampUs": "A String", # Cancellation date of the series subscription (or when it ends).
"currentReleaseInfo": { # Release information for the last release.
"amountInMicros": "A String", # Amount in micros of the specified currency code.
"currencyCode": "A String", # Currency code of the amount.
"releaseNumber": "A String", # The release number of this issue/volume/book.
"releaseTimestampUs": "A String", # The release date.
},
"nextReleaseInfo": { # Release information for the next release.
"amountInMicros": "A String", # Amount in micros of the specified currency code.
"currencyCode": "A String", # Currency code of the amount.
"releaseNumber": "A String", # The release number of this issue/volume/book.
"releaseTimestampUs": "A String", # The release date.
},
"seriesSubscriptionType": "A String", # series subscription type.
},
"seriesType": "A String",
"subscriptionId": "A String",
"title": "A String",
},
],
}