@@ -16,10 +16,10 @@ public class Client {
1616 var elementLookup : [ String : Any ] = [ : ]
1717
1818 /**
19- Initializes the Skyflow client .
19+ This is the description for init method .
2020
2121 - Parameters:
22- - skyflowConfig: Configuration for the Skyflow client .
22+ - skyflowConfig: This is the description for skyflowConfig parameter .
2323 */
2424 public init ( _ skyflowConfig: Configuration ) {
2525 self . vaultID = skyflowConfig. vaultID
@@ -30,12 +30,12 @@ public class Client {
3030 }
3131
3232 /**
33- Inserts data into the vault .
33+ This is the description for insert method .
3434
3535 - Parameters:
36- - records: Records to insert .
37- - options: Options for the insertion .
38- - callback: Implementation of Skyflow.Callback .
36+ - records: This is the description for records parameter .
37+ - options: This is the description for options parameter .
38+ - callback: This is the description for callback parameter .
3939 */
4040 public func insert( records: [ String : Any ] , options: InsertOptions = InsertOptions ( ) , callback: Callback ) {
4141 var tempContextOptions = self . contextOptions
@@ -111,13 +111,13 @@ public class Client {
111111 }
112112
113113 /**
114- Creates a container.
114+ This is the description for container method .
115115
116116 - Parameters:
117- - type: Type of the container .
118- - options: Options for the container .
117+ - type: This is the description for type parameter .
118+ - options: This is the description for options parameter .
119119
120- - Returns: Returns a container of the specified type .
120+ - Returns: This is the description of what method returns .
121121 */
122122 public func container< T> ( type: T . Type , options: ContainerOptions ? = ContainerOptions ( ) ) -> Container < T > ? {
123123 if options != nil {
@@ -138,12 +138,12 @@ public class Client {
138138 }
139139
140140 /**
141- Returns values that correspond to the specified tokens .
141+ This is the description for detokenize method .
142142
143143 - Parameters:
144- - records: Records to fetch .
145- - options: Additional options for the reveal method .
146- - callback: Implementation of Skyflow.Callback .
144+ - records: This is the description for records parameter .
145+ - options: This is the description for options parameter .
146+ - callback: This is the description for callback paramter .
147147 */
148148 public func detokenize( records: [ String : Any ] , options: RevealOptions ? = RevealOptions ( ) , callback: Callback ) {
149149 var tempContextOptions = self . contextOptions
@@ -210,11 +210,11 @@ public class Client {
210210 }
211211
212212 /**
213- Reveal records by Skyflow ID .
213+ This is the description for getById method .
214214
215215 - Parameters:
216216 - records: This is the description for records parameter.
217- - callback: Implementation of Skyflow.Callback .
217+ - callback: This is the description for callback paramter .
218218 */
219219 public func getById( records: [ String : Any ] , callback: Callback ) {
220220 var tempContextOptions = self . contextOptions
0 commit comments