Class: LockstepSdk::SyncRequestModel

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

Overview

Represents a user request to sync data

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ SyncRequestModel

Initialize the SyncRequestModel using the provided prototype



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 24

def initialize(params = {})
    @sync_request_id = params.dig(:sync_request_id)
    @group_key = params.dig(:group_key)
    @status_code = params.dig(:status_code)
    @process_result_message = params.dig(:process_result_message)
    @app_enrollment_id = params.dig(:app_enrollment_id)
    @created = params.dig(:created)
    @modified = params.dig(:modified)
    @modified_user_id = params.dig(:modified_user_id)
    @details = params.dig(:details)
end

Instance Attribute Details

#app_enrollment_idUuid

Returns App enrollment sync request is for.

Returns:

  • (Uuid)

    App enrollment sync request is for



45
46
47
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 45

def app_enrollment_id
  @app_enrollment_id
end

#createdDate-time

Returns The date this sync request was created.

Returns:

  • (Date-time)

    The date this sync request was created



47
48
49
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 47

def created
  @created
end

#detailsObject

Returns The detailed results from the sync. To retrieve this collection, set `includeDetails` to true in your GET requests.

Returns:

  • (Object)

    The detailed results from the sync. To retrieve this collection, set `includeDetails` to true in your GET requests.



53
54
55
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 53

def details
  @details
end

#group_keyUuid

Returns The GroupKey uniquely identifies a single Lockstep Platform account. All records for this account will share the same GroupKey value. GroupKey values cannot be changed once created. For more information, see [Accounts and GroupKeys](developer.lockstep.io/docs/accounts-and-groupkeys).

Returns:

  • (Uuid)

    The GroupKey uniquely identifies a single Lockstep Platform account. All records for this account will share the same GroupKey value. GroupKey values cannot be changed once created. For more information, see [Accounts and GroupKeys](developer.lockstep.io/docs/accounts-and-groupkeys).



39
40
41
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 39

def group_key
  @group_key
end

#modifiedDate-time

Returns The date this sync request was last modified.

Returns:

  • (Date-time)

    The date this sync request was last modified



49
50
51
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 49

def modified
  @modified
end

#modified_user_idUuid

Returns The ID number of the user who most recently modified this sync request.

Returns:

  • (Uuid)

    The ID number of the user who most recently modified this sync request.



51
52
53
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 51

def modified_user_id
  @modified_user_id
end

#process_result_messageString

Returns Message containing information about the sync request results.

Returns:

  • (String)

    Message containing information about the sync request results



43
44
45
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 43

def process_result_message
  @process_result_message
end

#status_codeString

Returns Potential values = Cancelled, Ready, In Progress, Success, Failed.

Returns:

  • (String)

    Potential values = Cancelled, Ready, In Progress, Success, Failed



41
42
43
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 41

def status_code
  @status_code
end

#sync_request_idUuid

Returns The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform.

Returns:

  • (Uuid)

    The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform.



37
38
39
# File 'lib/lockstep_sdk/models/sync_request_model.rb', line 37

def sync_request_id
  @sync_request_id
end