Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeveloperSubscription

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

Overview

Structure of a DeveloperSubscription.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1DeveloperSubscription

Returns a new instance of GoogleCloudApigeeV1DeveloperSubscription.



3436
3437
3438
# File 'lib/google/apis/apigee_v1/classes.rb', line 3436

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

Instance Attribute Details

#apiproductString

Name of the API product for which the developer is purchasing a subscription. Corresponds to the JSON property apiproduct

Returns:

  • (String)


3407
3408
3409
# File 'lib/google/apis/apigee_v1/classes.rb', line 3407

def apiproduct
  @apiproduct
end

#created_atFixnum

Output only. Time when the API product subscription was created in milliseconds since epoch. Corresponds to the JSON property createdAt

Returns:

  • (Fixnum)


3413
3414
3415
# File 'lib/google/apis/apigee_v1/classes.rb', line 3413

def created_at
  @created_at
end

#end_timeFixnum

Time when the API product subscription ends in milliseconds since epoch. Corresponds to the JSON property endTime

Returns:

  • (Fixnum)


3418
3419
3420
# File 'lib/google/apis/apigee_v1/classes.rb', line 3418

def end_time
  @end_time
end

#last_modified_atFixnum

Output only. Time when the API product subscription was last modified in milliseconds since epoch. Corresponds to the JSON property lastModifiedAt

Returns:

  • (Fixnum)


3424
3425
3426
# File 'lib/google/apis/apigee_v1/classes.rb', line 3424

def last_modified_at
  @last_modified_at
end

#nameString

Output only. Name of the API product subscription. Corresponds to the JSON property name

Returns:

  • (String)


3429
3430
3431
# File 'lib/google/apis/apigee_v1/classes.rb', line 3429

def name
  @name
end

#start_timeFixnum

Time when the API product subscription starts in milliseconds since epoch. Corresponds to the JSON property startTime

Returns:

  • (Fixnum)


3434
3435
3436
# File 'lib/google/apis/apigee_v1/classes.rb', line 3434

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3441
3442
3443
3444
3445
3446
3447
3448
# File 'lib/google/apis/apigee_v1/classes.rb', line 3441

def update!(**args)
  @apiproduct = args[:apiproduct] if args.key?(:apiproduct)
  @created_at = args[:created_at] if args.key?(:created_at)
  @end_time = args[:end_time] if args.key?(:end_time)
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
  @name = args[:name] if args.key?(:name)
  @start_time = args[:start_time] if args.key?(:start_time)
end