FT.Data.ApiUser.CreateApiUser C# (CSharp) Method

CreateApiUser() public static method

Create a new ApiUser object.
public static CreateApiUser ( global createdDate, global apiUserId, global apiKey, global emailAddress ) : ApiUser
createdDate global Initial value of the CreatedDate property.
apiUserId global Initial value of the ApiUserId property.
apiKey global Initial value of the ApiKey property.
emailAddress global Initial value of the EmailAddress property.
return ApiUser
        public static ApiUser CreateApiUser(global::System.DateTime createdDate, global::System.Int32 apiUserId, global::System.String apiKey, global::System.String emailAddress)
        {
            ApiUser apiUser = new ApiUser();
            apiUser.CreatedDate = createdDate;
            apiUser.ApiUserId = apiUserId;
            apiUser.ApiKey = apiKey;
            apiUser.EmailAddress = emailAddress;
            return apiUser;
        }