Pipl.APIs.Data.Containers.Person.Person C# (CSharp) Метод

Person() публичный Метод

public Person ( IEnumerable fields = null, bool queryParamsMatch = null, string id = null, float match = null, string search_pointer = null ) : System
fields IEnumerable
queryParamsMatch bool
id string
match float
search_pointer string
Результат System
        public Person(IEnumerable<Field> fields = null, bool? queryParamsMatch = null,
            string id = null, float? match = null, string search_pointer = null)
            : base(fields)
        {
            Relationships = new List<Relationship>();

            this.Id = id;
            this.Match = match;

            this.SearchPointer = search_pointer;
        }
Person