// This file was generated with XrmTypesGen
// GitHub: https://github.com/OliverFlint/XrmTypesGen

declare namespace Xrm.Ext.OptionSets {
{{#each meta}} 
    /**
    * OptionSet Name: `{{this.Name}}`
    *    
    */ 
    const enum {{this.Name}}  {
 
    {{#each this.Options}}    
        "{{this.Label.UserLocalizedLabel.Label}}"= {{this.Value}},                       
    {{/each}}
    };
    
    {{/each}}
}