Skip to main content

iOS SDK Samples - Blueprint Operations

Get Blueprint Details
          
          
let getBlueprintDetails = tryblueprintDetails.getDictionary(key: "GetBlueprint")
// record is the object of newRecord() 
        $record.getBlueprintDetails() { result in
            switch result
            {
            case .success(let blueprint, let response) :
                print ("ResponseJSON : \( response.responseJSON )")
            case .failure(let error) :
                print ( "Throws exception : \(error)" )
            }
        }
 
Update Blueprint Details