I create my API and now I generate SDKs for my users access them. Swagger generates a ugly name, e.g:
public void sellersSellerIdShipmentPost(){
...
}
Of course it's difficult to read and understand. What's the method naming convention for SDKs? In Facebook API, they use somenthing like CreateAppGroupDialog but seems like a SOAP and not API.
What's good practice for SDKs? I don't know but I think that maybe a good ideia is use httpMethodName. E.g:
public void putSellersShipment(){
...
}
public void postSellerShipment(){
...
}