-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathIQRecord.cs
35 lines (34 loc) · 1.18 KB
/
IQRecord.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* Copyright © 2010 Intuit Inc. All rights reserved.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.opensource.org/licenses/eclipse-1.0.php
*/
namespace Intuit.QuickBase.Client
{
public interface IQRecord
{
int RecordId { get; }
RecordState RecordState { get; }
bool UncleanState { get; }
bool IsOnServer { get; }
object this[int index] { get; set; }
object this[string columnName] { get; set; }
void AcceptChanges();
void UploadFile(string columnName, string filePath);
void DownloadFile(string columnName, string path, int versionId);
void ChangeOwnerTo(string newOwner);
string GetAsCSV(string clist);
bool Equals(IQRecord record);
bool Equals(object obj);
int GetHashCode();
string ToString();
}
internal interface IQRecord_int
{
void ForceUpdateState(int recId);
void ForceUpdateState();
int GetColumnIndex(string colName);
}
}