Skip to content

Commit

Permalink
ADST-48_SaveTask
Browse files Browse the repository at this point in the history
  • Loading branch information
PiplaniVinay committed May 8, 2024
1 parent d2dcd1b commit e102a35
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AlfrescoContent/AlfrescoContent.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Pod::Spec.new do |s|
s.osx.deployment_target = '10.14'
s.tvos.deployment_target = '12.0'
s.swift_version = '5.0'
s.version = '0.2.64'
s.version = '0.2.65'
s.source = {:git => 'https://github.com/Alfresco/alfresco-ios-swift-api.git', :tag => 'content/'+s.version.to_s}
s.authors = {'Alfresco' => '[email protected]'}
s.license = {:type => 'Apache License Version 2.0', :file => 'AlfrescoContent/LICENSE.md'}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,14 @@ public struct SaveFormParams: Codable {
self.comment = comment
}
}

public struct SaveTaskParams: Codable {
public var outcome: String?
public var values: CodableDictionary?

public init(outcome: String?,
params: [String: AnyEncodable]) {
self.outcome = outcome
self.values = CodableDictionary(params)
}
}

0 comments on commit e102a35

Please sign in to comment.