Passbook.Generator.PassGeneratorRequest.PassGeneratorRequest C# (CSharp) Method

PassGeneratorRequest() public method

public PassGeneratorRequest ( ) : System
return System
        public PassGeneratorRequest()
        {
            this.HeaderFields = new List<Field>();
            this.PrimaryFields = new List<Field>();
            this.SecondaryFields = new List<Field>();
            this.AuxiliaryFields = new List<Field>();
            this.BackFields = new List<Field>();
            this.Images = new Dictionary<PassbookImage, byte[]>();
            this.RelevantLocations = new List<RelevantLocation>();
            this.RelevantBeacons = new List<RelevantBeacon>();
            this.AssociatedStoreIdentifiers = new List<int>();
            this.Localizations = new Dictionary<string, Dictionary<string, string>>(StringComparer.OrdinalIgnoreCase);

            this.UserInfo = null;
        }