Class: LockstepSdk::SyncSubmitModel

Inherits:
Object
  • Object
show all
Defined in:
lib/lockstep_sdk/models/sync_submit_model.rb

Overview

Model representing information for a sync request

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ SyncSubmitModel

Initialize the SyncSubmitModel using the provided prototype



24
25
26
# File 'lib/lockstep_sdk/models/sync_submit_model.rb', line 24

def initialize(params = {})
    @app_enrollment_id = params.dig(:app_enrollment_id)
end

Instance Attribute Details

#app_enrollment_idUuid

Returns The identifier of the app enrollment.

Returns:

  • (Uuid)

    The identifier of the app enrollment



29
30
31
# File 'lib/lockstep_sdk/models/sync_submit_model.rb', line 29

def app_enrollment_id
  @app_enrollment_id
end