Commit 8c219ebd by Brent Gulanowski

Remove references to customerID from documentation comments.

parent 229e299b
...@@ -82,7 +82,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl ...@@ -82,7 +82,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl
* GET /api/customers/:customer_id * GET /api/customers/:customer_id
* Gets an existing customer * Gets an existing customer
* *
* @param customerID A customer ID retrieved from either customer creation or login
* @param block (BUYCustomer *customer, NSError *error) * @param block (BUYCustomer *customer, NSError *error)
* *
* @return The associated BUYRequestOperation * @return The associated BUYRequestOperation
...@@ -123,7 +122,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl ...@@ -123,7 +122,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl
* Update customer credentials represented by BUYAccountCredentials object * Update customer credentials represented by BUYAccountCredentials object
* *
* @param credentials Credentials containing a password * @param credentials Credentials containing a password
* @param customerID ID of customer being activated
* @param block (BUYCustomer *customer, NSError *error) * @param block (BUYCustomer *customer, NSError *error)
* *
* @return The associated BUYRequestOperation * @return The associated BUYRequestOperation
...@@ -149,7 +147,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl ...@@ -149,7 +147,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl
* PUT /api/customers/:customer_id/customer_token/renew * PUT /api/customers/:customer_id/customer_token/renew
* Renews an existing customer's token * Renews an existing customer's token
* *
* @param customerID ID of customer renewing token
* @param block (NSString *token, NSError *error) * @param block (NSString *token, NSError *error)
* *
* @return the associated BUYRequestOperation * @return the associated BUYRequestOperation
...@@ -173,9 +170,7 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl ...@@ -173,9 +170,7 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl
/** /**
* DELETE /api/customers/:customer_id/customer_token * DELETE /api/customers/:customer_id/customer_token
* Logs out an existing customer * Logs out an existing customer
* Expects a customerID string
* *
* @param customer A customerID represented by a string
* @param block (BUYStatus status, NSError *error) * @param block (BUYStatus status, NSError *error)
* *
* @return The associated BUYRequestOperation * @return The associated BUYRequestOperation
...@@ -199,7 +194,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl ...@@ -199,7 +194,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl
* GET /api/customers/:customer_id/orders * GET /api/customers/:customer_id/orders
* Gets orders for a given customer * Gets orders for a given customer
* *
* @param customerID A customer ID for which to retrieve the order
* @param block (NSArray <BUYOrder*> *orders, NSError *error) * @param block (NSArray <BUYOrder*> *orders, NSError *error)
* *
* @return The associated BUYRequestOperation * @return The associated BUYRequestOperation
...@@ -210,7 +204,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl ...@@ -210,7 +204,6 @@ typedef void (^BUYDataOrderBlock)(BUYOrder * _Nullable order, NSError * _Nullabl
* GET /api/customers/:customer_id/orders/:id * GET /api/customers/:customer_id/orders/:id
* Gets order with a given identifier * Gets order with a given identifier
* *
* @param customerID A customer ID for which to retrieve the order
* @param orderID An order ID to retrieve * @param orderID An order ID to retrieve
* @param block (NSArray <BUYOrder*> *orders, NSError *error) * @param block (NSArray <BUYOrder*> *orders, NSError *error)
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment