class Google::Apis::AdminDatatransferV1::ApplicationTransferParam

Template for application transfer parameters.

Attributes

key[RW]

The type of the transfer parameter. eg: 'PRIVACY_LEVEL' Corresponds to the JSON property `key` @return [String]

value[RW]

The value of the coressponding transfer parameter. eg: 'PRIVATE' or 'SHARED' Corresponds to the JSON property `value` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/admin_datatransfer_v1/classes.rb, line 116
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/admin_datatransfer_v1/classes.rb, line 121
def update!(**args)
  @key = args[:key] if args.key?(:key)
  @value = args[:value] if args.key?(:value)
end