Skip to content

Latest commit

 

History

History
64 lines (48 loc) · 1.57 KB

quoteversionstate.md

File metadata and controls

64 lines (48 loc) · 1.57 KB
uid title keywords description so.generated so.topic so.envir
quoteversionstate
quoteversionstate
mdoprovider mdo provider quoteversionstate
List provider for the <see cref="T:SuperOffice.Data.QuoteVersionState" /> enum
true
reference
onsite, online

"quoteversionstate" MDO List

List provider for the enum

Implemented by the QuoteVersionStateListProvider class. The name of the MDO list is 'quoteversionstate'.

Sample Request

GET /api/v1/MDOList/quoteversionstate
Authorization: Basic dGplMDpUamUw
Accept: application/json; charset=utf-8
Accept-Language: *

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("quoteversionstate", forceFlatList: true);
foreach (var item in listProvider.RootItems) {
    Console.WriteLine("{0} {1} {2} {3}", 
         item.Id, ResourceManager.ParseInlineResources(item.Name), item.StyleHint, item.ExtraInfo);
}

Sample Output

Id Name StyleHint ExtraInfo
1 Draft
2 Draft - not calculated
3 Needs Approval
4 Approved
5 Not Approved
6 Sent
7 Archived
8 Lost
9 Sold

Related MDO Lists

  • "quoteversionstateheadings"
  • "quoteversionstateheadingswithallitem"
  • "quoteversionstateheadingswithallitemwithnoselection"
  • "quoteversionstateheadingswithnoselection"
  • "quoteversionstatewithallitem"
  • "quoteversionstatewithallitemwithnoselection"
  • "quoteversionstatewithnoselection"