Class: Google::Apis::BooksV1::DownloadAccessRestriction

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/books_v1/classes.rb,
generated/google/apis/books_v1/representations.rb,
generated/google/apis/books_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DownloadAccessRestriction

Returns a new instance of DownloadAccessRestriction.



1509
1510
1511
# File 'generated/google/apis/books_v1/classes.rb', line 1509

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#device_allowedBoolean Also known as: device_allowed?

If restricted, whether access is granted for this (user, device, volume). Corresponds to the JSON property deviceAllowed

Returns:

  • (Boolean)


1445
1446
1447
# File 'generated/google/apis/books_v1/classes.rb', line 1445

def device_allowed
  @device_allowed
end

#downloads_acquiredFixnum

If restricted, the number of content download licenses already acquired ( including the requesting client, if licensed). Corresponds to the JSON property downloadsAcquired

Returns:

  • (Fixnum)


1452
1453
1454
# File 'generated/google/apis/books_v1/classes.rb', line 1452

def downloads_acquired
  @downloads_acquired
end

#just_acquiredBoolean Also known as: just_acquired?

If deviceAllowed, whether access was just acquired with this request. Corresponds to the JSON property justAcquired

Returns:

  • (Boolean)


1457
1458
1459
# File 'generated/google/apis/books_v1/classes.rb', line 1457

def just_acquired
  @just_acquired
end

#kindString

Resource type. Corresponds to the JSON property kind

Returns:

  • (String)


1463
1464
1465
# File 'generated/google/apis/books_v1/classes.rb', line 1463

def kind
  @kind
end

#max_download_devicesFixnum

If restricted, the maximum number of content download licenses for this volume. Corresponds to the JSON property maxDownloadDevices

Returns:

  • (Fixnum)


1468
1469
1470
# File 'generated/google/apis/books_v1/classes.rb', line 1468

def max_download_devices
  @max_download_devices
end

#messageString

Error/warning message. Corresponds to the JSON property message

Returns:

  • (String)


1473
1474
1475
# File 'generated/google/apis/books_v1/classes.rb', line 1473

def message
  @message
end

#nonceString

Client nonce for verification. Download access and client-validation only. Corresponds to the JSON property nonce

Returns:

  • (String)


1478
1479
1480
# File 'generated/google/apis/books_v1/classes.rb', line 1478

def nonce
  @nonce
end

#reason_codeString

Error/warning reason code. Additional codes may be added in the future. 0 OK 100 ACCESS_DENIED_PUBLISHER_LIMIT 101 ACCESS_DENIED_LIMIT 200 WARNING_USED_LAST_ACCESS Corresponds to the JSON property reasonCode

Returns:

  • (String)


1485
1486
1487
# File 'generated/google/apis/books_v1/classes.rb', line 1485

def reason_code
  @reason_code
end

#restrictedBoolean Also known as: restricted?

Whether this volume has any download access restrictions. Corresponds to the JSON property restricted

Returns:

  • (Boolean)


1490
1491
1492
# File 'generated/google/apis/books_v1/classes.rb', line 1490

def restricted
  @restricted
end

#signatureString

Response signature. Corresponds to the JSON property signature

Returns:

  • (String)


1496
1497
1498
# File 'generated/google/apis/books_v1/classes.rb', line 1496

def signature
  @signature
end

#sourceString

Client app identifier for verification. Download access and client-validation only. Corresponds to the JSON property source

Returns:

  • (String)


1502
1503
1504
# File 'generated/google/apis/books_v1/classes.rb', line 1502

def source
  @source
end

#volume_idString

Identifies the volume for which this entry applies. Corresponds to the JSON property volumeId

Returns:

  • (String)


1507
1508
1509
# File 'generated/google/apis/books_v1/classes.rb', line 1507

def volume_id
  @volume_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
# File 'generated/google/apis/books_v1/classes.rb', line 1514

def update!(**args)
  @device_allowed = args[:device_allowed] if args.key?(:device_allowed)
  @downloads_acquired = args[:downloads_acquired] if args.key?(:downloads_acquired)
  @just_acquired = args[:just_acquired] if args.key?(:just_acquired)
  @kind = args[:kind] if args.key?(:kind)
  @max_download_devices = args[:max_download_devices] if args.key?(:max_download_devices)
  @message = args[:message] if args.key?(:message)
  @nonce = args[:nonce] if args.key?(:nonce)
  @reason_code = args[:reason_code] if args.key?(:reason_code)
  @restricted = args[:restricted] if args.key?(:restricted)
  @signature = args[:signature] if args.key?(:signature)
  @source = args[:source] if args.key?(:source)
  @volume_id = args[:volume_id] if args.key?(:volume_id)
end