ZendeskApi_v2.Requests.Users.GetUserRelatedInformationAsync C# (CSharp) 메소드

GetUserRelatedInformationAsync() 공개 메소드

public GetUserRelatedInformationAsync ( long id ) : Task
id long
리턴 Task
        public async Task<IndividualUserRelatedInformationResponse> GetUserRelatedInformationAsync(long id)
        {
            return await GenericGetAsync<IndividualUserRelatedInformationResponse>(string.Format("users/{0}/related.json", id));
        }